結合
pd.concat([x,y], axis=0)
マージ
merge(x, y, on=”column_name”, how=”left”)
indexについて
columnをindex名に設定
x.set_index('column_nam') <h3>リセット</h3> [python] x.reset_index()
各要素に関数を適用
applyとmapという関数がある。
X.apply(lambda x: x)
seriesの各要素, mapとapply
DataFrameの各要素, applymap
DataFrameの各行・列, applyのaxis指定
agg
DataFrameの生成
DataFrameとnumpy arrayの変換
pd.DataFrame(array, index=[], columns=[], dtype=) x.values #to_numpyというものもある。 x.to_numpy()