pandas

2020-04-07  本文已影响0人  黑夜的眸

数据结构

dataframe

panel: Dataframe的容器

未来有可能弃用,建议使用multiindex

series


索引


排序


运算


画图

dataframe.plot(x=None, y=None, kind='line')

kind:


文件读取

Format Type Data Description Reader Writer
text CSV read_csv to_csv
text JSON read_json to_json
text HTML read_html to_html
text Local clipboard read_clipboard to_clipboard
binary MS Excel read_excel to_excel
binary OpenDocument read_excel
binary HDF5 Format read_hdf to_hdf
binary Feather Format read_feather to_feather
binary Parquet Format read_parquet to_parquet
binary Msgpack read_msgpack to_msgpack
binary Stata read_stata to_stata
binary SAS read_sas
binary Python Pickle Format read_pickle to_pickle
SQL SQL read_sql to_sql
SQL Google Big Query read_gbq to_gbq

read_csv(path, usecols=[], names=[])

  • usecols: 只读取固定列
  • names: 为没有列名的数据,增加列名,否则文件第一行一般会当作列名

to_csv(path, index=False, header=False, mode='a')

  • index: 索引是否取消
  • header: 表头
  • mode: 'a'代表追加
上一篇下一篇

猜你喜欢

热点阅读