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

abstract 列の値が Nan の場合は, title 列の値を代入する

train = train.fillna( { 'abstract' : train[ 'title' ] } )