Prasad Patil
Prasad Patil

Reputation: 45

How to resolve TypeError while running ProfileReport using pandas_profiling?

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

Answers (1)

fickas
fickas

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

Related Questions