# ヘッダありCSV df = read_csv(filename, header=0) # ヘッダなしCSV df = read_csv(filename, header=None, names=['user_id', 'name']) リファレンスを読む pandasでCSV読み込みをするにあたって、ヘッダ行の扱い方の指示はリファレンスを読んでもいまひとつ理解しづらいものがあります。 header : int, list of int, default ‘infer’ Row number(s) to use as the column names, and the start of the data. Default behavior is to infer the column names: if no names are passed the behavior is identi