Can't import ggplot module in iPython -
i'm trying use ggplot in anaconda ipython notebook. ran %matplotlib inline
, from ggplot import *
, following error:
importerror traceback (most recent call last) <ipython-input-3-02aeb6e281ab> in <module>() ----> 1 ggplot import * importerror: no module named ggplot
where in anaconda launcher can modules imported?
you need install ggplot via terminal first. assuming have pip installed, run in terminal:$ pip install ggplot
you should see package download. go notebook , run same commands again.
Comments
Post a Comment