python
from ggplot import *
df = pd.read_csv('data.csv')
ggplot(aes(x='x_column', y='y_column'), data=df) + \
geom_point()
python
ggplot(aes(x='x_column', y='y_column'), data=df) + \
geom_line()
python
ggplot(aes(x='category', y='value'), data=df) + \
geom_bar(stat='identity')
python
ggplot(aes(x='x_column', y='y_column', fill='category'), data=df) + \
geom_area()
pip install ggplot