from ggplot import *
import pandas as pd
y_name = 'y'
df = pd.DataFrame({"x":[1,2,3,4],y_name:[4,5,6,7]})
p =ggplot(df, aes(x='x', y='y'))+geom_point()
Тогда у меня рухнул PyCharm, фотографии нет, и мне нужно перезапустить консоль Python. Но этот код работает в spyder.
Также, когда я делаю:
from ggplot import *
в PyCharm
, меня предупреждают, что:
from ggplot import *
Backend Qt5Agg is interactive backend. Turning interactive mode on.
C:\Anaconda3\lib\site-packages\ggplot\utils.py:81: FutureWarning: pandas.tslib is deprecated and will be removed in a future version.
You can access Timestamp as pandas.Timestamp
pd.tslib.Timestamp,
C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\_pydev_bundle\pydev_import_hook.py:20: FutureWarning: The pandas.lib module is deprecated and will be removed in a future version. These are private functions and can be accessed from pandas._libs.lib instead
module = self._system_import(name, *args, **kwargs)
C:\Program Files\JetBrains\PyCharm Community Edition 2018.2.4\helpers\pydev\_pydev_bundle\pydev_import_hook.py:20: FutureWarning: The pandas.core.datetools module is deprecated and will be removed in a future version. Please use the pandas.tseries module instead.
module = self._system_import(name, *args, **kwargs)
это не будет отображаться в spyder.