Is there a Python API for R ggplot2?

My question is as simple as the title: I want to use it R ggplot2, but all my data processing is done in Python: is there a Python API for ggplot2or is there an easy way to use it ggplot2through Python?

+4
source share
4 answers

RPy allows you to call R from Python and provides utilities for converting data. You can use the ggplot2 function with a graphics package , see this section for examples .

+2
source

: https://github.com/yhat/ggplot

python- R ggplot2.

+5
+1

All Articles