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.
Questions tagged [pandas-profiling]
150 questions
1
vote
1 answer
Issues with Pandas Profiling
When I am trying to generate report using pandas profiling , I am getting below error while using below code:
KeyError: 'script_values'
import pandas_profiling
from pandas_profiling import ProfileReport
report = ProfileReport(df)
report
Can you…

user3331874
- 37
- 6
1
vote
1 answer
Attribute error in Python while using pandas_profiling
I am using Pandas-profiling to generate a report for my data. The code is as follows
# importing the library
from pandas_profiling import ProfileReport
# getting a small subset and passing into ProfileReport constructor
sub =…

Shiva Kumar
- 175
- 1
- 12
1
vote
1 answer
How to investigate warnings in progress bar in pandas_profiling
When using the default example for displaying a report:
df = pd.DataFrame(
np.random.rand(100, 5),
columns=['a', 'b', 'c', 'd', 'e']
)
profile = ProfileReport(df, title='Pandas Profiling Report', html={
'style':…

Createdd
- 865
- 11
- 15
1
vote
1 answer
keyword rotation is not recognized (Pandas Profiling)
I am trying to use pandas_profiling package for data profiling. For basic usage, i have followed this documentation
https://github.com/pandas-profiling/pandas-profiling
and use the following code from it
import numpy as np
import pandas as…

Usman Rafiq
- 137
- 1
- 11
1
vote
1 answer
Google Colab: Why matplotlib has a behaviour different then default after importing pandas_profiling?
When using a notebook in Google Colab, my matplotlib plots have different behaviors whether I import the library pandas-profiling or not.
If I do not import pandas-profiling, the plots are displayed inline by default. But if I import the library,…

Antonio Carlos
- 31
- 5
1
vote
0 answers
How come the same py file runs in one Pycharm project, but not another, while both projects have same module imported
Recently, I installed pandas_profiling for the purpose of a particular project I created in the PyCharm IDE. It worked after having updated 'External tools' in Settings. Realising a similar need in another project context I did the installation of…

Newbie
- 61
- 1
- 1
- 6
1
vote
1 answer
Where to find configuration parameters for pandas-profiling?
I am having a difficult time finding the default configuration parameters (the kwargs argument) used in df.profile_report and pandas_profiling.ProfileReport. Where can I find a list of what parameters are available?

blacksite
- 12,086
- 10
- 64
- 109
1
vote
1 answer
No Correlation Plot in Pandas-Profiling Report
Running Pandas profiling report, and no correlation graph is being generated even when there are valid numeric variables with strong correlations. The following code generates a profile report in which the Correlation section is blank.
import…

choward
- 11
- 1
- 3
1
vote
1 answer
Pandas Profiling does not work when started from a Java program
I have a simple Python program using pandas_profiling. Here is the source code, which I have stored as c:\temp\pandas_profiling_demo.py:
import pandas as pd
import pandas_profiling as pp
df = pd.DataFrame(data={'x': [1, 2, 3, 4, 5], 'y': [2, 2, 4,…

Bill Qualls
- 397
- 1
- 7
- 20
1
vote
0 answers
missing data in pandas profiling report
I am using Python 2.7 and Pandas Profiling to generate a report out of a dataframe. Following is my code:
import pandas as pd
import pandas_profiling
# the actual dataset is very large, just providing the two elements of the list
data =…

Ronnie
- 391
- 2
- 6
- 19
1
vote
0 answers
Printing output of pandas profiling object upon click of a button
My question is very specific to pandas profiling package and tkinter package. I want that on click of a button, the profiling report should be displayed in the gui window. My code is:
import pandas_profiling
def data_profiling():
…

user2906657
- 521
- 2
- 4
- 18
1
vote
1 answer
Terminate and restart Google DataLab instance?
I am finding when working with larger datasets that the kernel may die, something I also experiance on my local machine. Sometimes it comes back and sometimes not. So even the Tree panel won't react to terminate a errant Kernel. EG "restart" does…

dartdog
- 10,432
- 21
- 72
- 121
0
votes
0 answers
Issue with pandas-profiling: Unknown Error during Data Preprocessing and Analysis
I've been working on data preprocessing and analysis tasks. To gain a comprehensive understanding of my data (data distribution and correlation analysis), I decided to utilize the pandas-profiling library. However, I've encountered an unfamiliar…

Bennison J
- 414
- 1
- 12
0
votes
0 answers
When running profile_report in ydata_profiling (used to be pandas_profiling) how do I fix the 'to_pydatetime' error?
I am trying to profile_report in ydata_profiling and I get the following error:
TypeError: descriptor 'to_pydatetime' for 'pandas._libs.tslibs.timestamps._Timestamp' objects doesn't apply to a 'datetime.date' object.
I figured that the pandas data…

Dev_Reka
- 1
0
votes
0 answers
While importing pandas_profiling getting ImportError: cannot import name 'VisionsTypeset' from 'visions' (unknown location)
I am trying to run import pandas_profiling but getting error ImportError: cannot import name 'VisionsTypeset' from 'visions' (unknown location). I have tried installing pip install visions and pip install visions[all] which gets installed but I…

ViSa
- 1,563
- 8
- 30