Skip to content

Instantly share code, notes, and snippets.

@kurozumi
Created July 17, 2016 00:48
Show Gist options
  • Save kurozumi/48a1bb2e53287c544e4f76e21907e6e8 to your computer and use it in GitHub Desktop.
Save kurozumi/48a1bb2e53287c544e4f76e21907e6e8 to your computer and use it in GitHub Desktop.
【Python】Pandasでヘッダー(1列目)を除いてCSVファイルを読み込む方法
import pandas as pd
dframe = pd.read_csv("sample.csv", header=None)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment