Questions tagged [pandas-profiling]

pandas-profiling is a Python package for exploratory data analysis. Use this tag when your question is specifically related to this package, in contrast to general exploratory data analysis.

150 questions
42
votes
5 answers

ImportError: IProgress not found. Please update jupyter and ipywidgets although it is installed

I am using jupyter notebook and installed. ipywidgets==7.4.2 widgetsnbextension pandas-profiling=='.0.0 and also I ran: !jupyter nbextension enable --py widgetsnbextension but when running: from pandas_profiling import ProfileReport profile =…
Cranjis
  • 1,590
  • 8
  • 31
  • 64
19
votes
9 answers

ImportError: cannot import name 'ABCIndexClass' from 'pandas.core.dtypes.generic'

I have this output : [Pandas-profiling] ImportError: cannot import name 'ABCIndexClass' from 'pandas.core.dtypes.generic' when trying to import pandas-profiling in this fashion : from pandas_profiling import ProfileReport It seems to import…
TheCatThatBarks
  • 190
  • 1
  • 2
  • 6
15
votes
11 answers

Unable to import Pandas Profiling

I am unable to import pandas profiling in jupyter notebook. Could someone please tell me whats wrong.
NEX
  • 533
  • 2
  • 4
  • 10
12
votes
7 answers

Errors running Pandas Profile Report

I'm trying to run a Profile Report for EDA in conda Jupyter NB, but keep getting errors. Here is my code thus far: import pandas_profiling from pandas_profiling import ProfileReport profile = ProfileReport(data) and profile =…
jlbrosnahan
  • 173
  • 1
  • 1
  • 10
12
votes
5 answers

How to profile large datasets with Pandas profiling?

Data is not perfectly clean, but is used without issue with pandas. The pandas library provides many extremely useful functions for EDA. But when I use profiling for large data i.e 100 million records with 10 columns, reading it from a database…
Viv
  • 1,474
  • 5
  • 28
  • 47
10
votes
4 answers

Speeding up pandas profiling analysis using check_correlation?

Using pandas profiling to generate a report. the size of the dataset is very large to speed up the processing im trying to turn off correlations so i used check_correlations from another post I saw, ValueError: Config parameter "check_correlation"…
OCTAVIAN
  • 336
  • 5
  • 18
7
votes
2 answers

Juypter notebook pandas_profiling: cannot import name 'to_html' from 'pandas_profiling.report'

I am trying to import pandas profiling. import pandas as pd !pip install pandas_profiling import pandas_profiling as pp However, there is a error message saying that cannot import name to_html from pandas_profiling.report
ALT
  • 135
  • 2
  • 8
6
votes
1 answer

ImportError: matplotlib is required for plotting when the default backend "matplotlib" is selected

I am new to pandas_profiling and getting ImportError while importing it. Please help. import numpy as np import pandas as pd import pandas_profiling import matplotlib.pyplot as plt import matplotlib.image as mpimg %matplotlib inline import seaborn…
Shilpa Deshmukh
  • 141
  • 1
  • 2
  • 9
5
votes
3 answers

getting an error while working on Pandas-profiling on Jupyter

As I was practicing my visualization skills, I came across an article , https://towardsdatascience.com/complete-guide-to-data-visualization-with-python-2dd74df12b5e. In this, the person has used pandas-profiling method, which was new to me I tried…
5
votes
0 answers

Possibility of modifying the Overview tab in Pandas Profiling

I wish to remove the "Warnings" and "Reproduction" menu options/tabs which are present under the "Overview" tab in the pandas-profiling HTML report. We want to integrate this in our application to show a basic understanding of the datasets. We…
5
votes
9 answers

Pandas-profiling error AttributeError: 'DataFrame' object has no attribute 'profile_report'

I wanted to use pandas-profiling to do some eda on a dataset but I'm getting an error : AttributeError: 'DataFrame' object has no attribute 'profile_report' I have created a python script on spyder with the following code : import pandas as…
Adhish
  • 61
  • 1
  • 1
  • 7
5
votes
5 answers

Cannot import or install pandas-profiling in Jupyter Notebook

I have technically already installed pandas-profiling using pip install pandas-profiling But when I try to import it, I get the following error: import numpy as np import pandas as pd import…
genelaw03
  • 91
  • 1
  • 2
  • 9
4
votes
3 answers

Pandas profiling not able to import due to error 'cannot import name "DataError' from 'pandas.core.base'"

I have just upgraded Python to 3.11 today. Pandas-profiling worked fine before, but now I cannot seem to import it due to the following error: cannot import name 'DataError' from 'pandas.core.base'…
JT_uhmbt
  • 61
  • 1
  • 7
4
votes
2 answers

Fail to allocate bitmap error on numeric data using pandas profiling

I am doing exploratory data analysis on my numeric data and i tried to run pandas profiling but i got error while generating report structure. import pandas as pd from pandas_profiling import ProfileReport df =…
user12
  • 761
  • 8
  • 24
4
votes
1 answer

How to change variable type when working with pandas-profiling?

For reproducing the issue, Notebook, data, output: github link I have Contract variable/column in my dataset which looks like this, all look like numbers but they are actually categorical. When read with pandas, the info says it is read as int.…
Mohith7548
  • 1,282
  • 2
  • 16
  • 24
1
2 3
9 10