请 [注册] 或 [登录]  | 返回主站

量化交易吧 /  量化平台 帖子:3353231 新帖:40

求大神帮忙写一个纯股票多头策略!!!!

外汇工厂发表于:5 月 10 日 06:56回复(1)

初始金额
100万

新手教程—Pandas库使用示例¶

以下内容是对pandas库的简要介绍, 查看更多示例,如果您想更深入的学习pandas,推荐您查看《利用Python进行数据分析》一书。

#导入常用librariesimport pandas as pdimport numpy as npimport matplotlib.pyplot as pltpd.options.display.max_rows = 31

数据结构¶

Pandas最重要的数据结构有Series和DataFrame,这里介绍series一些基本操作。

创建一个Series

s = pd.Series([1,3,5,np.nan,6,8])s
0     1
1     3
2     5
3   NaN
4     6
5     8
dtype: float64

创建一个DataFrame,包括一个numpy array, 时间索引和列名字。

dates = pd.date_range('20130101',periods=6)dates
DatetimeIndex(['2013-01-01', '2013-01-02', '2013-01-03', '2013-01-04',
               '2013-01-05', '2013-01-06'],
              dtype='datetime64[ns]', freq='D', tz=None)
df = pd.DataFrame(np.random.randn(6,4),index=dates,columns=list('ABCD'))df

ABCD
2013-01-010.451654-1.669159-0.716677-0.311599
2013-01-021.834961-0.612790-0.3762121.239693
2013-01-03-0.4227850.6636770.878228-0.132077
2013-01-04-1.2018221.0541610.6410470.166984
2013-01-051.9537511.072182-0.4774650.514392
2013-01-060.181696-1.0683041.6760520.322696

创建一个DataFrame,包括一个可以转化为Series的字典

df2 = pd.DataFrame({ 'A' : 1.,
   ....:            'B' : pd.Timestamp('20130102'),
   ....:            'C' : pd.Series(1,index=list(range(4)),dtype='float32'),
   ....:            'D' : np.array([3] * 4,dtype='int32'),
   ....:            'E' : pd.Categorical(["test","train","test","train"]),
   ....:            'F' : 'foo' })df2

ABCDEF
012013-01-0213testfoo
112013-01-0213trainfoo
212013-01-0213testfoo
312013-01-0213trainfoo
df2.dtypes
A           float64
B    datetime64[ns]
C           float32
D             int32
E          category
F            object
dtype: object

可以完成自动补全功能,下面这是一个例子。

df2.

df2.A                  df2.boxplot df2.abs                df2.C df2.add                df2.clip df2.add_prefix         df2.clip_lower df2.add_suffix         df2.clip_upper df2.align              df2.columns df2.all                df2.combine df2.any                df2.combineAdd df2.append             df2.combine_first df2.apply              df2.combineMult df2.applymap           df2.compound df2.as_blocks          df2.consolidate df2.asfreq             df2.convert_objects df2.as_matrix          df2.copy df2.astype             df2.corr df2.at                 df2.corrwith df2.at_time            df2.count df2.axes               df2.cov df2.B                  df2.cummax df2.between_time       df2.cummin df2.bfill              df2.cumprod df2.blocks             df2.cumsum df2.bool               df2.D

查看数据¶

查看前几条数据

df.head()

ABCD
2013-01-012.108893-0.510124-0.2266240.428265
2013-01-020.028505-0.861493-0.4083372.683092
2013-01-03-1.078374-0.0899490.495247-0.906926
2013-01-04-0.6554450.7796071.0817391.917179
2013-01-05-1.0659631.8529621.6495440.318253

查看后几条数据

df.tail()

ABCD
2013-01-020.028505-0.861493-0.4083372.683092
2013-01-03-1.078374-0.0899490.495247-0.906926
2013-01-04-0.6554450.7796071.0817391.917179
2013-01-05-1.0659631.8529621.6495440.318253
2013-01-060.687415-0.7981440.780510-0.176025
df.index
DatetimeIndex(['2013-01-01', '2013-01-02', '2013-01-03', '2013-01-04',
               '2013-01-05', '2013-01-06'],
              dtype='datetime64[ns]', freq='D', tz=None)
df.columns
Index([u'A', u'B', u'C', u'D'], dtype='object')
df.values
array([[ 2.10889288, -0.51012447, -0.22662373,  0.42826453],
       [ 0.02850516, -0.86149264, -0.40833718,  2.68309202],
       [-1.07837404, -0.08994899,  0.49524732, -0.90692598],
       [-0.65544482,  0.77960699,  1.08173914,  1.91717896],
       [-1.06596263,  1.85296197,  1.64954395,  0.31825327],
       [ 0.6874145 , -0.79814426,  0.78050989, -0.1760253 ]])
df.describe()

ABCD
count6.0000006.0000006.0000006.000000
mean0.0041720.0621430.5620130.710640
std1.2368871.0644820.7833981.340351
min-1.078374-0.861493-0.408337-0.906926
25%-0.963333-0.726139-0.046156-0.052456
50%-0.313470-0.3000370.6378790.373259
75%0.5226870.5622181.0064321.544950
max2.1088931.8529621.6495442.683092
df.T

2013-01-01 00:00:002013-01-02 00:00:002013-01-03 00:00:002013-01-04 00:00:002013-01-05 00:00:002013-01-06 00:00:00
A2.1088930.028505-1.078374-0.655445-1.0659630.687415
B-0.510124-0.861493-0.0899490.7796071.852962-0.798144
C-0.226624-0.4083370.4952471.0817391.6495440.780510
D0.4282652.683092-0.9069261.9171790.318253-0.176025
df.sort(columns='B')

ABCD
2013-01-020.028505-0.861493-0.4083372.683092
2013-01-060.687415-0.7981440.780510-0.176025
2013-01-012.108893-0.510124-0.2266240.428265
2013-01-03-1.078374-0.0899490.495247-0.906926
2013-01-04-0.6554450.7796071.0817391.917179
2013-01-05-1.0659631.8529621.6495440.318253

选择数据¶

df['A']
2013-01-01    2.108893
2013-01-02    0.028505
2013-01-03   -1.078374
2013-01-04   -0.655445
2013-01-05   -1.065963
2013-01-06    0.687415
Freq: D, Name: A, dtype: float64
df[0:3]

ABCD
2013-01-012.108893-0.510124-0.2266240.428265
2013-01-020.028505-0.861493-0.4083372.683092
2013-01-03-1.078374-0.0899490.495247-0.906926
df['20130104':'20130106']

ABCD
2013-01-04-0.6554450.7796071.0817391.917179
2013-01-05-1.0659631.8529621.6495440.318253
2013-01-060.687415-0.7981440.780510-0.176025
df.loc[dates[0]]
A    2.108893
B   -0.510124
C   -0.226624
D    0.428265
Name: 2013-01-01 00:00:00, dtype: float64
df.loc[:,['A','B']]

AB
2013-01-012.108893-0.510124
2013-01-020.028505-0.861493
2013-01-03-1.078374-0.089949
2013-01-04-0.6554450.779607
2013-01-05-1.0659631.852962
2013-01-060.687415-0.798144
df.loc['20130101':'20130103','A':'B']

AB
2013-01-012.108893-0.510124
2013-01-020.028505-0.861493
2013-01-03-1.078374-0.089949
df.loc['20130101','A':'B']
A    2.108893
B   -0.510124
Name: 2013-01-01 00:00:00, dtype: float64
df.loc[dates[0],'A']
2.1088928765565074
df.at[dates[0],'A']
2.1088928765565074
df.iloc[3]
A   -0.655445
B    0.779607
C    1.081739
D    1.917179
Name: 2013-01-04 00:00:00, dtype: float64
df.iloc[3:5,0:2]

AB
2013-01-040.3853151.002269
2013-01-05-0.2761391.422227
df.iloc[[1,2,4],[0,2]]

AC
2013-01-021.6438820.586507
2013-01-03-0.660116-0.278159
2013-01-05-0.2761390.168013
df.iloc[1:3,:]

ABCD
2013-01-021.6438820.4832490.586507-1.525807
2013-01-03-0.6601160.444498-0.278159-0.492252
df.iloc[:,1:3]

BC
2013-01-01-1.166239-1.229485
2013-01-020.4832490.586507
2013-01-030.444498-0.278159
2013-01-041.002269-0.017041
2013-01-051.4222270.168013
2013-01-06-0.873137-0.025599
df.iloc[1,1]
0.48324869963712741
df[df.A>0]

ABCD
2013-01-021.6438820.4832490.586507-1.525807
2013-01-040.3853151.002269-0.0170412.023510
2013-01-060.758207-0.873137-0.0255990.845468
df[df>0]

ABCD
2013-01-01NaNNaNNaN0.453450
2013-01-021.6438820.4832490.586507NaN
2013-01-03NaN0.444498NaNNaN
2013-01-040.3853151.002269NaN2.023510
2013-01-05NaN1.4222270.168013NaN
2013-01-060.758207NaNNaN0.845468
df2=df.copy()df2['E']=['one', 'one','two','three','four','three']df2

ABCDE
2013-01-01-0.463576-1.166239-1.2294850.453450one
2013-01-021.6438820.4832490.586507-1.525807one
2013-01-03-0.6601160.444498-0.278159-0.492252two
2013-01-040.3853151.002269-0.0170412.023510three
2013-01-05-0.2761391.4222270.168013-0.116013four
2013-01-060.758207-0.873137-0.0255990.845468three
df2[df2['E'].isin(['two','four'])]

ABCDE
2013-01-03-0.6601160.444498-0.278159-0.492252two
2013-01-05-0.2761391.4222270.168013-0.116013four
s1 = pd.Series([1,2,3,4,5,6],index=pd.date_range('20130102',periods=6))s1
2013-01-02    1
2013-01-03    2
2013-01-04    3
2013-01-05    4
2013-01-06    5
2013-01-07    6
Freq: D, dtype: int64
df['F'] = s1
df.at[dates[0],'A'] = 0
df.iat[0,1] = 0
df.loc[:,'D'] = np.array([5] * len(df))
df

ABCDF
2013-01-010.0000000.000000-0.2266245NaN
2013-01-020.028505-0.861493-0.40833751
2013-01-03-1.078374-0.0899490.49524752
2013-01-04-0.6554450.7796071.08173953
2013-01-05-1.0659631.8529621.64954454
2013-01-060.687415-0.7981440.78051055
df2 = df.copy()df2[df2 > 0] = -df2df2

ABCDF
2013-01-010.0000000.000000-0.226624-5NaN
2013-01-02-0.028505-0.861493-0.408337-5-1
2013-01-03-1.078374-0.089949-0.495247-5-2
2013-01-04-0.655445-0.779607-1.081739-5-3
2013-01-05-1.065963-1.852962-1.649544-5-4
2013-01-06-0.687415-0.798144-0.780510-5-5

缺失数据¶

缺失数据使用np.nan表示,默认不包括在计算内,可以通过下列方法更改缺失数据。

df1 = df.reindex(index=dates[0:4],columns=list(df.columns) + ['E'])df1.loc[dates[0]:dates[1],'E'] = 1df1

ABCDFE
2013-01-010.0000000.000000-0.2266245NaN1
2013-01-020.028505-0.861493-0.408337511
2013-01-03-1.078374-0.0899490.49524752NaN
2013-01-04-0.6554450.7796071.08173953NaN
df1.dropna(how='any')

ABCDFE
2013-01-020.028505-0.861493-0.408337511
df1.fillna(value=5)

ABCDFE
2013-01-010.0000000.000000-0.226624551
2013-01-020.028505-0.861493-0.408337511
2013-01-03-1.078374-0.0899490.495247525
2013-01-04-0.6554450.7796071.081739535
pd.isnull(df1)

ABCDFE
2013-01-01FalseFalseFalseFalseTrueFalse
2013-01-02FalseFalseFalseFalseFalseFalse
2013-01-03FalseFalseFalseFalseFalseTrue
2013-01-04FalseFalseFalseFalseFalseTrue

统计¶

df.mean()#列计算
A   -0.347310
B    0.147164
C    0.562013
D    5.000000
F    3.000000
dtype: float64
df.mean(1)#行计算
2013-01-01    1.193344
2013-01-02    0.951735
2013-01-03    1.265385
2013-01-04    1.841180
2013-01-05    2.287309
2013-01-06    2.133956
Freq: D, dtype: float64
s = pd.Series([1,3,5,np.nan,6,8],index=dates)#.shift(2)s
2013-01-01     1
2013-01-02     3
2013-01-03     5
2013-01-04   NaN
2013-01-05     6
2013-01-06     8
Freq: D, dtype: float64
s = pd.Series([1,3,5,np.nan,6,8],index=dates).shift(2)s
2013-01-01   NaN
2013-01-02   NaN
2013-01-03     1
2013-01-04     3
2013-01-05     5
2013-01-06   NaN
Freq: D, dtype: float64
df.sub(s,axis='index')

ABCDF
2013-01-01NaNNaNNaNNaNNaN
2013-01-02NaNNaNNaNNaNNaN
2013-01-03-2.078374-1.089949-0.50475341
2013-01-04-3.655445-2.220393-1.91826120
2013-01-05-6.065963-3.147038-3.3504560-1
2013-01-06NaNNaNNaNNaNNaN
df

ABCDF
2013-01-010.0000000.000000-0.2266245NaN
2013-01-020.028505-0.861493-0.40833751
2013-01-03-1.078374-0.0899490.49524752
2013-01-04-0.6554450.7796071.08173953
2013-01-05-1.0659631.8529621.64954454
2013-01-060.687415-0.7981440.78051055
df.apply(np.cumsum)

ABCDF
2013-01-010.0000000.000000-0.2266245NaN
2013-01-020.028505-0.861493-0.634961101
2013-01-03-1.049869-0.951442-0.139714153
2013-01-04-1.705314-0.1718350.942026206
2013-01-05-2.7712761.6811272.5915692510
2013-01-06-2.0838620.8829833.3720793015
df.apply(lambda x: x.max() - x.min())
A    1.765789
B    2.714455
C    2.057881
D    0.000000
F    4.000000
dtype: float64
s = pd.Series(np.random.randint(0,7,size=10))s
0    3
1    2
2    5
3    6
4    0
5    5
6    5
7    0
8    3
9    2
dtype: int64
s.value_counts()#统计频率
5    3
3    2
2    2
0    2
6    1
dtype: int64
s = pd.Series(['A', 'B', 'C', 'Aaba', 'Baca', np.nan, 'CABA', 'dog', 'cat'])s.str.lower()
0       a
1       b
2       c
3    aaba
4    baca
5     NaN
6    caba
7     dog
8     cat
dtype: object

规整 Merge¶

concat¶

df = pd.DataFrame(np.random.randn(10, 4))df

0123
01.5923740.6554360.951883-0.317604
10.9986690.3963450.554562-0.213849
20.598832-0.795983-0.5817680.241221
3-0.0810550.2061421.143169-0.749618
41.427974-1.996137-2.494941-2.499584
5-0.568733-0.691511-0.3164640.149466
61.123894-0.8758452.322487-0.676746
7-2.862173-0.679058-1.556605-1.727630
80.009725-1.435217-0.2253592.155263
90.1397170.5803400.4572270.132505
# break it i* piecespieces = [df[:3], df[3:7], df[7:]]pd.concat(pieces)

0123
01.5923740.6554360.951883-0.317604
10.9986690.3963450.554562-0.213849
20.598832-0.795983-0.5817680.241221
3-0.0810550.2061421.143169-0.749618
41.427974-1.996137-2.494941-2.499584
5-0.568733-0.691511-0.3164640.149466
61.123894-0.8758452.322487-0.676746
7-2.862173-0.679058-1.556605-1.727630
80.009725-1.435217-0.2253592.155263
90.1397170.5803400.4572270.132505

merge¶

left = pd.DataFrame({'key': ['foo', 'foo'], 'lval': [1, 2]})right = pd.DataFrame({'key': ['foo', 'foo'], 'rval': [4, 5]})
left

keylval
0foo1
1foo2
right

keyrval
0foo4
1foo5
pd.merge(left, right, on='key')

keylvalrval
0foo14
1foo15
2foo24
3foo25

append¶

df = pd.DataFrame(np.random.randn(8, 4), columns=['A','B','C','D'])df

ABCD
01.247717-1.6120090.4722900.201178
11.1001790.161626-0.3217700.474538
2-0.119958-1.3893660.4948380.182669
3-0.101885-1.1781540.1093590.505889
4-0.0645350.0847940.213919-0.222954
5-1.5635381.3743491.6172621.060599
61.353898-0.5609710.625005-0.024575
7-0.349520-0.441983-2.0940491.159827
s = df.iloc[3]df.append(s, ignore_index=True)

ABCD
01.247717-1.6120090.4722900.201178
11.1001790.161626-0.3217700.474538
2-0.119958-1.3893660.4948380.182669
3-0.101885-1.1781540.1093590.505889
4-0.0645350.0847940.213919-0.222954
5-1.5635381.3743491.6172621.060599
61.353898-0.5609710.625005-0.024575
7-0.349520-0.441983-2.0940491.159827
8-0.101885-1.1781540.1093590.505889
df = pd.DataFrame({'A' : ['foo', 'bar', 'foo', 'bar',
   ....:                          'foo', 'bar', 'foo', 'foo'],
   ....:                    'B' : ['one', 'one', 'two', 'three',
   ....:                          'two', 'two', 'one', 'three'],
   ....:                    'C' : np.random.randn(8),
   ....:                    'D' : np.random.randn(8)})
   ....: 
        df

ABCD
0fooone-0.6983940.176046
1barone0.643372-0.026620
2footwo1.127251-0.321595
3barthree1.290459-0.010702
4footwo0.836285-0.346573
5bartwo0.981900-1.203876
6fooone1.5276031.903233
7foothree0.8804890.347362

Grouping¶

df.groupby('A').sum()

CD
A

bar2.915732-1.241198
foo3.6732351.758473
df.groupby(['A','B']).sum()


CD
AB

barone0.643372-0.026620
three1.290459-0.010702
two0.981900-1.203876
fooone0.8292102.079279
three0.8804890.347362
two1.963536-0.668168

Stack¶

tuples = list(zip(*[['bar', 'bar', 'baz', 'baz',
   ....:                      'foo', 'foo', 'qux', 'qux'],
   ....:                     ['one', 'two', 'one', 'two',
   ....:                      'one', 'two', 'one', 'two']]))
   ....: 
        index = pd.MultiIndex.from_tuples(tuples, names=['first', 'second'])df = pd.DataFrame(np.random.randn(8, 2), index=index, columns=['A', 'B'])df2 = df[:4]df2


AB
firstsecond

barone-0.5994110.511343
two0.9151590.096236
bazone-0.2359270.837185
two-0.399887-0.393647
stacked = df2.stack()stacked
first  second   
bar    one     A   -0.599411
               B    0.511343
       two     A    0.915159
               B    0.096236
baz    one     A   -0.235927
               B    0.837185
       two     A   -0.399887
               B   -0.393647
dtype: float64
stacked.unstack()


AB
firstsecond

barone-0.5994110.511343
two0.9151590.096236
bazone-0.2359270.837185
two-0.399887-0.393647
stacked.unstack(1)

secondonetwo
first


barA-0.5994110.915159
B0.5113430.096236
bazA-0.235927-0.399887
B0.837185-0.393647
stacked.unstack(0)

firstbarbaz
second


oneA-0.599411-0.235927
B0.5113430.837185
twoA0.915159-0.399887
B0.096236-0.393647
df = pd.DataFrame({'A' : ['one', 'one', 'two', 'three'] * 3,
   .....:                    'B' : ['A', 'B', 'C'] * 4,
   .....:                    'C' : ['foo', 'foo', 'foo', 'bar', 'bar', 'bar'] * 2,
   .....:                    'D' : np.random.randn(12),
   .....:                    'E' : np.random.randn(12)})
   .....: 
        df

ABCDE
0oneAfoo-0.1279581.228190
1oneBfoo0.149878-0.197303
2twoCfoo-1.5867350.635435
3threeAbar-0.1746150.014008
4oneBbar0.226525-0.045204
5oneCbar-1.540367-0.612553
6twoAfoo0.006047-0.089030
7threeBfoo1.037414-0.895084
8oneCfoo1.542884-0.695924
9oneAbar-2.2562350.645135
10twoBbar-0.128245-0.686096
11threeCbar0.7513960.014718
pd.pivot_table(df, values='D', index=['A', 'B'], columns=['C'])

Cbarfoo
AB

oneA-2.256235-0.127958
B0.2265250.149878
C-1.5403671.542884
threeA-0.174615NaN
BNaN1.037414
C0.751396NaN
twoANaN0.006047
B-0.128245NaN
CNaN-1.586735

Time Series¶

rng = pd.date_range('1/1/2012', periods=100, freq='S')ts = pd.Series(np.random.randint(0, 500, len(rng)), index=rng)ts.resample('5Min', how='sum')
2012-01-01    21469
Freq: 5T, dtype: int64
ts
2012-01-01 00:00:00    312
2012-01-01 00:00:01     67
2012-01-01 00:00:02    256
2012-01-01 00:00:03    486
2012-01-01 00:00:04    485
2012-01-01 00:00:05    210
2012-01-01 00:00:06    238
2012-01-01 00:00:07    484
2012-01-01 00:00:08    280
2012-01-01 00:00:09    223
2012-01-01 00:00:10     95
2012-01-01 00:00:11    254
2012-01-01 00:00:12    436
2012-01-01 00:00:13    234
2012-01-01 00:00:14    337
                      ... 
2012-01-01 00:01:25    176
2012-01-01 00:01:26     92
2012-01-01 00:01:27    355
2012-01-01 00:01:28    486
2012-01-01 00:01:29    270
2012-01-01 00:01:30    215
2012-01-01 00:01:31    165
2012-01-01 00:01:32    449
2012-01-01 00:01:33    373
2012-01-01 00:01:34    386
2012-01-01 00:01:35    271
2012-01-01 00:01:36     17
2012-01-01 00:01:37     89
2012-01-01 00:01:38    108
2012-01-01 00:01:39    131
Freq: S, dtype: int64
rng = pd.date_range('3/6/2012 00:00', periods=5, freq='D')
 ts = pd.Series(np.random.randn(len(rng)), rng)ts
2012-03-06    0.167706
2012-03-07   -1.507317
2012-03-08    0.382276
2012-03-09    2.126438
2012-03-10    0.415160
Freq: D, dtype: float64
ts_utc = ts.tz_localize('UTC')ts_utc
2012-03-06 00:00:00+00:00    0.167706
2012-03-07 00:00:00+00:00   -1.507317
2012-03-08 00:00:00+00:00    0.382276
2012-03-09 00:00:00+00:00    2.126438
2012-03-10 00:00:00+00:00    0.415160
Freq: D, dtype: float64
ts_utc.tz_convert('US/Eastern')
2012-03-05 19:00:00-05:00    0.167706
2012-03-06 19:00:00-05:00   -1.507317
2012-03-07 19:00:00-05:00    0.382276
2012-03-08 19:00:00-05:00    2.126438
2012-03-09 19:00:00-05:00    0.415160
Freq: D, dtype: float64
rng = pd.date_range('1/1/2012', periods=5, freq='M')ts = pd.Series(np.random.randn(len(rng)), index=rng)ts
2012-01-31   -0.110541
2012-02-29    0.558980
2012-03-31   -0.438710
2012-04-30   -1.489807
2012-05-31    0.175205
Freq: M, dtype: float64
ps = ts.to_period()ps
2012-01   -0.110541
2012-02    0.558980
2012-03   -0.438710
2012-04   -1.489807
2012-05    0.175205
Freq: M, dtype: float64
ps.to_timestamp()
2012-01-01   -0.110541
2012-02-01    0.558980
2012-03-01   -0.438710
2012-04-01   -1.489807
2012-05-01    0.175205
Freq: MS, dtype: float64
prng = pd.period_range('1990Q1', '2000Q4', freq='Q-NOV')ts = pd.Series(np.random.randn(len(prng)), prng)ts.index = (prng.asfreq('M', 'e') + 1).asfreq('H', 's') + 9ts.head()
1990-03-01 09:00   -2.013458
1990-06-01 09:00   -1.760266
1990-09-01 09:00   -1.266192
1990-12-01 09:00   -0.665547
1991-03-01 09:00    1.581657
Freq: H, dtype: float64

Categoricals¶

df = pd.DataFrame({"id":[1,2,3,4,5,6], "raw_grade":['a', 'b', 'b', 'a', 'a', 'e']})df

idraw_grade
01a
12b
23b
34a
45a
56e
df["grade"] = df["raw_grade"].astype("category")df["grade"]
0    a
1    b
2    b
3    a
4    a
5    e
Name: grade, dtype: category
Categories (3, object): [a, b, e]
df["grade"].cat.categories = ["very good", "good", "very bad"]
df.sort("grade")

idraw_gradegrade
01avery good
34avery good
45avery good
12bgood
23bgood
56every bad
df.groupby("grade").size()
grade
very good    3
good         2
very bad     1
dtype: int64

Plotting¶

ts = pd.Series(np.random.randn(1000), index=pd.date_range('1/1/2000', periods=1000))ts = ts.cumsum()ts.plot()
<matplotlib.axes._subplots.AxesSubplot at 0x7f92ddc02090>
df = pd.DataFrame(np.random.randn(1000, 4), index=ts.index,
   .....:                   columns=['A', 'B', 'C', 'D'])
   .....: 
        df = df.cumsum()plt.figure(); df.plot(); plt.legend(loc='best')
<matplotlib.legend.Legend at 0x7f92dda3f990>
<matplotlib.figure.Figure at 0x7f92dda17650>
 

全部回复

0/140

量化课程

    移动端课程