In [1]:
importpandasaspdprint"Hi! This is a cell. Press the ▶ button above to run it"
Hi! This is a cell. Press the ▶ button above to run it
In [7]:
defprint_10_nums():foriinrange(10):printi,
In [8]:
print_10_nums()
0 1 2 3 4 5 6 7 8 9
In [9]:
%timesum([xforxinrange(100000)])
CPU times: user 24.4 ms, sys: 5.3 ms, total: 29.7 ms
Wall time: 27.1 ms
Out[9]:
4999950000
In [10]:
%timesum(xforxinrange(100000))
CPU times: user 7.38 ms, sys: 2.95 ms, total: 10.3 ms
Wall time: 8.13 ms
Out[10]:
4999950000
In [12]:
importnumpyasnpts=pd.Series(np.random.randn(1000),index=pd.date_range('1/1/2000',periods=1000))df=pd.DataFrame(np.random.randn(1000,4),index=ts.index,columns=['A','B','C','D'])df=df.cumsum()df.plot()pylab.show()
In []:
Untitled
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 最近在写个性化推荐的论文,经常用到Python来处理数据,被pandas和numpy中的数据选取和索引问题绕的比较...
- 7.3 数据转换 还有一个重要操作就是 过滤、清理、以及其他的转换工作。 7.3.1 移除重复数据 DataFra...