pip install ggplot
python
from ggplot import *
import pandas as pd
python
data = pd.read_csv('data.csv')
python
chart = ggplot(data, aes(x='x_variable', y='y_variable'))
python
chart += geom_point()
chart += geom_line()
python
chart += ggtitle('My Chart')
chart += xlab('X-axis')
chart += ylab('Y-axis')
chart += theme_bw()
python
print(chart)
python
ggsave('chart.png', chart)