pandasの使い方について、基本だけ載せておきます。
後日追記します。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 |
# coding: utf-8 # In[24]: #モジュールをインポートする import numpy as np import pandas as pd # In[25]: #1次元配列を作成する s = pd.Series([1,2,np.nan]) """ 0 1.0 1 2.0 2 NaN dtype: float64 """ #取り出す s[0] #1.0 #合計 s.sum() #3.0 # In[26]: #ディクショナリからデータフレームを作成する df=pd.DataFrame({"A":[1,2],"B":[3,4]}) df # In[27]: #型を確認する df.dtypes """ A int64 B int64 dtype: object """ # In[28]: #numpy行列からデータフレームを作成する df=pd.DataFrame(np.random.randn(6,4)) #6行4列 #indexを付ける df=pd.DataFrame(np.random.randn(6,4),index=pd.date_range("20170101",periods=6)) #columnsを付ける df=pd.DataFrame(np.random.randn(6,4), index=pd.date_range("20170101",periods=6), columns=["A","B","C","D"]) df # In[29]: #最初の一行を見る df.head(1) # In[30]: #最後の3行を見る df.tail(3) # In[31]: #indexを見る df.index #columnsを見る df.columns #valueを見る df.values # In[32]: #discribe(count mean std mi max)を見る df.describe() # In[33]: #転置する df.T # In[34]: #ソートする (columnを指定) df.sort_values(by="B") #indexでスライスする df[0:3] df["20170102":"20170104"] #index指定で行を抽出 df.loc["20170101"] # In[35]: df.loc["20170102",["A","B"]] # In[36]: df.loc[:,["A","B"]] # In[37]: #行と列を座標で指定 df.iloc[0,0] # In[38]: #行と列を座標でスライス df.iloc[0:2,0:2] # In[39]: df[df.A>0] # In[40]: df[df>0] # In[41]: df2=df.copy() # In[42]: df2["E"]=["one","twe","thee","four","five","six"] df2 # In[43]: df2[df2["E"].isin(["thee","five"])] # In[44]: s=pd.Series([1,2,3,4,5,6],index=pd.date_range("20170101",periods=6)) s # In[45]: df2["E"]=s df2 # In[46]: df.shift(1) # In[47]: df=pd.DataFrame(np.random.randn(2,2)) df # In[48]: pd.concat([df,df]) # In[49]: df=pd.DataFrame(np.random.rand(8,4),columns=["A","B","C","D"]) df # In[50]: s=df.iloc[0] s # In[51]: df.append(s) # In[52]: df.append(s,ignore_index=True) # In[53]: df=pd.DataFrame({"A":["foo","bar","foo","bar"],"B":np.random.randn(4)}) df # In[54]: #A列の中で同じものをまとめて足し算する df.groupby("A").sum() # In[55]: #Yahooから株式情報を取得する import pandas_datareader df=pandas_datareader.data.DataReader("AAPL","yahoo","2014-01-01") df |