I am not sure whether my environment is special. I am on macOS Sierra, and I had installed Anaconda (Python 3) before installing Rodeo. I can verify that this works in Jupyter Notebook:
%matplotlib inline
from ggplot import ggplot, aes, geom_bar
import pandas as pd
# Create a dataframe
df=pd.DataFrame({"Animal":["dog","dolphin","chicken","ant","spider"],"Legs":[4,0,2,6,8]})
df.head()
ggplot(df, aes(x="Animal", weight="Legs")) + geom_bar(fill='blue')
But the same code does not work in Rodeo. I saw a broken image icon followed by seemingly correct messages:
<matplotlib.figure.Figure at 0x1181f6198>
<ggplot: (292642824)>
I am not sure whether my environment is special. I am on macOS Sierra, and I had installed Anaconda (Python 3) before installing Rodeo. I can verify that this works in Jupyter Notebook:
But the same code does not work in Rodeo. I saw a broken image icon followed by seemingly correct messages:
What can go wrong?
System information: