额外篇 | ggplot (下)
【摘要】 这是专栏的格外篇 ,是Python中的ggplot的可视化包。其实,我是不知道这篇放在哪里。
`
``python from ggplot import * print(meat.head())
date beef veal pork lamb_and_mutton broilers other_chicken \ 0 1944-01-01 7...
这是专栏的格外篇 ,是Python中的ggplot的可视化包。其实,我是不知道这篇放在哪里。
`
``python
from ggplot import *
print(meat.head())
date beef veal pork lamb_and_mutton broilers other_chicken \ 0 1944-01-01 751.0 85.0 1280.0 89.0 NaN NaN 1 1944-02-01 713.0 77.0 1169.0 72.0 NaN NaN 2 1944-03-01 741.0 90.0 1128.0 75.0 NaN NaN 3 1944-04-01 650.0 89.0 978.0 66.0 NaN NaN 4 1944-05-01 681.0 106.0 1029.0 78.0 NaN NaN turkey 0 NaN 1 NaN 2 NaN 3 NaN 4 NaN ```python
from ggplot import *
p=ggplot(aes(x='date', y='beef'),data=meat)+geom_line()
print(p)
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
文章来源: maoli.blog.csdn.net,作者:刘润森!,版权归原作者所有,如需转载,请联系作者。
原文链接:maoli.blog.csdn.net/article/details/89672460
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)