pandas_proflingを使うとTypeError: concat() got an unexpected keyword argument 'join_axes'が出た話(Google Colab)
(Qiita初投稿なのでご容赦ください)
今回とあるコンペに参加した。
Google Colabで pandas_profling.ProfileReport を使って、データを眺めようと思った矢先に以下のようなエラーが発生した。
from pandas_profiling import ProfileReport
train = pd.DataFrame(train)
profile = ProfileReport(train)
===================================================
TypeError: concat() got an unexpected keyword argument 'join_axes'
エラーを調べていくとどうやらversionに問題があるよう。
まずpandasのversionを下げてみたが、うまくいかなかった。
次にpandas_profilingのversionをupgradeすると解決。以下コード。
import pip
!pip install -U pandas_profiling
すでにpandas_profilingをインストールしてる人は、
!pip uninstall pandas_profiling
を挟むとよい。
Author And Source
この問題について(pandas_proflingを使うとTypeError: concat() got an unexpected keyword argument 'join_axes'が出た話(Google Colab)), 我々は、より多くの情報をここで見つけました https://qiita.com/bsns_123456_clg/items/f518805b0eeee3381c7c著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .