204 questions
5
votes
4
answers
1k
views
Is there a Python API for R's ggplot2? [closed]
My question is as simple as the title: i want to use R's ggplot2 but all my data handling is done in Python: is there a Python API for ggplot2, or an easy way to use ggplot2 through Python ?
7
votes
3
answers
4k
views
Accessing axis or figure in python ggplot
python ggplot is great, but still new, and I find the need to fallback on traditional matplotlib techniques to modify my plots. But I'm not sure how to either pass an axis instance to ggplot, or get ...
6
votes
2
answers
5k
views
Python: How can I use ggplot with a simple 2 column array?
I try to use ggplot for python I have the following data:
power_data = [[ 4.13877565e+04, 2.34652000e-01],
[ 4.13877565e+04, 2.36125000e-01],
[ 4.13877565e+04, 2.34772000e-01],
...
[ 4....
8
votes
2
answers
16k
views
How to make a histogram in ipython notebook using ggplot2 (for python)
I'm trying to make a histogram of a simple list of numbers in python using ipython notebook and ggplot for python. Using pylab, it's easy enough, but I cannot get ggplot to work.
I'm using this code (...