from ggplot import *
diamonds.head()

p = ggplot(aes(x='date', y='beef'), data=meat) + geom_point() + geom_line() + stat_smooth(color='blue')

ggsave(p, "test1.png")
