Reputation: 45
I am working with the below specifications
Python version = 3.8.5 Pandas version = 1.2.4
While running ProfileReport of pandas_profiling on jupyter notebook getting the below error.
TypeError: concat() got an unexpected keyword argument 'join_axes'
is there any solution to this problem apart from downgrading to an older version?
Upvotes: 3
Views: 1869
Reputation: 107
Install directly from repo:
pip install https://github.com/pandas-profiling/pandas-profiling/archive/master.zip
import pandas_profiling as pdpf
Upvotes: 3