-
Hi all,
and reading in a small Excel file as Pandas DataFrame, creating a ProfileReport with this dataframe throws the following error:
Scrolling to the issue list shows, this has happened if the versions of Pandas and Pandas_Profiling don't fit and few issue records are already there with closed label (e.g. #579) My question: Error message in details: C:\anaconda\Anaconda3\lib\site-packages\pandas_profiling_init_.py in init(self, df, **kwargs) C:\anaconda\Anaconda3\lib\site-packages\pandas_profiling\describe.py in describe(df, bins, check_correlation, correlation_threshold, correlation_overrides, check_recoded, pool_size, **kwargs) C:\anaconda\Anaconda3\lib\site-packages\pandas\util_decorators.py in wrapper(*args, **kwargs) TypeError: concat() got an unexpected keyword argument 'join_axes' |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Additional Note:
and
installation. I thought that in both cases pandas_profiling version 3.2.0 would be installed, but this is not the case. During conda-forge installation an old version 1.4.x has been installed. So, this issue/disussion can be closed. |
Beta Was this translation helpful? Give feedback.
Additional Note:
After having done some more root cause investigation on such symptom, I think the issue appears because of having different versions via
and
installation.
I thought that in both cases pandas_profiling version 3.2.0 would be installed, but this is not the case. During conda-forge installation an old version 1.4.x has been installed.
Working on a virtual environment setting created via conda command, I realised that for this activity the conda-forge channel has been used in the background. Therefore, in the jupyter notebook of such env setting the mentioned TypeError has been thrown.
So, this issue…