行名、列名では無く、データフレームindexとcolumnsのタイトルのつけ方。
日本語ググってすぐに出てこなかったから、メモ。
インデックスのタイトル
df.index.name = colname1
列のタイトル(列名ではない)
df.columns.name = colname2
参考リンク
https://stackoverflow.com/questions/18022845/pandas-index-column-title-or-name
Go to list of users who liked
More than 5 years have passed since last update.
行名、列名では無く、データフレームindexとcolumnsのタイトルのつけ方。
日本語ググってすぐに出てこなかったから、メモ。
インデックスのタイトル
df.index.name = colname1
列のタイトル(列名ではない)
df.columns.name = colname2
参考リンク
https://stackoverflow.com/questions/18022845/pandas-index-column-title-or-name
Register as a new user and use Qiita more conveniently
Go to list of users who liked