文件名称:Series_数据的访问-3gpp-23501-g10(中文版)
文件大小:28.14MB
文件格式:PDF
更新时间:2024-07-31 07:48:09
python 量化交易
2.2 Series 数据的访问 访问 Series 数据可以和数组一样使用下标,也可以像字典一样使用索引,还可以 使用一些条件过滤: s = Series(np.random.randn(10),index=['a', 'b', 'c', 'd', 'e', ' f', 'g', 'h', 'i', 'j']) s[0] 1.4328106520571824 s[:2] a 1.432811 b 0.120681 dtype: float64 s[[2,0,4]] c 0.578146 a 1.432811 e 1.327594 dtype: float64 s[['e', 'i']] e 1.327594 i -0.634347 dtype: float64 量化分析师的Python日记【第5天:数据处理的瑞士军刀pandas】 61