2021-09-19から1日間の記事一覧

Pandas 欠損値を別の列の値で埋める メモ

abstract 列の値が Nan の場合は, title 列の値を代入する train = train.fillna( { 'abstract' : train[ 'title' ] } )