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
0
votes
0 answers
How to integrate one Python library into another?
I have to integrate PyDP into Pandas Profiling. The purpose of this integration is to bring Differential Privacy into Pandas Profiling so that the EDA summary that we would get be differentially private.
The idea is simple -> to replace the mean…

Abin Varghese
- 11
- 2
0
votes
2 answers
Unable to import 'pandas_profiling' module
I have installed 'pandas_profiling' through conda install -c conda-forge pandas-profiling in the base environment. I could see through the conda list that pandas_profiling has been installed correctly (snapshot attached),
When I try to import…

pkj
- 559
- 1
- 9
- 21
0
votes
0 answers
Pandas profiling correlation warning seems to be wrong
I'm working on this dateset:
https://www.kaggle.com/ronitf/heart-disease-uci?select=heart.csv
I'm viewing the results of pandas profiling and it suggests that age column has HIGH CORRELATION with thalach column.
I checked the 3 types of correlation…

Boom
- 1,145
- 18
- 44
0
votes
2 answers
What is the meaning of HIGH CORRELATION in pandas profiling?
I'm trying to use pandas profiling on titanic dateset.
Under the overview section there are some features with caption "HIGH CORRELATION"
I know what is the meaning of correlation, but the caption doesn't tell which feature is correlated to this…

Boom
- 1,145
- 18
- 44
0
votes
1 answer
pandas-profiling showing the error of styles not in the library, how can I add the style?
from pandas_profiling import ProfileReport as pr
profile = pr(csv_data)
profile
Error: 'C:\Users\admin\anaconda3\envs\dataPipe\lib\site-packages\pandas_profiling\pandas_profiling.mplstyle' not found in the style library and input is not a valid URL…

Davy Sinong Ou
- 1
- 2
0
votes
1 answer
Error installing pandas_profiling with Pip on Ubuntu 20.04
pip install pandas_profiling
fails at
Running setup.py install for Bottleneck ... error
ERROR: Command errored out with exit status 1:
command: /home/me/venv/bin/python -u -c 'import io, os, sys, setuptools, tokenize; sys.argv[0] =…

TOI 700 e
- 197
- 1
- 3
- 18
0
votes
1 answer
Getting TypeError while parsing a dataframe into Pandas Profiling library
I'm facing TypeError while using pandas-profiling on a data as follows:
Summarize dataset: 2% 1/59 [00:09<09:20, 9.66s/it, Describe variable:project] -->>
~\Anaconda3\lib\site-packages\pandas\core\algorithms.py in isin(comps, values)
441 …

Amarpreet Singh
- 227
- 2
- 11
0
votes
1 answer
What is the method used by Pandas profiling tool to identify duplicates rows?
I'm looking for the rationale about the method used by pandas profiling tool to identify duplicates rows (in a dataframe with multiple columns)?
I couldn't find it in Pandas Profiling documentation.

Leonardo Valese
- 9
- 1
0
votes
1 answer
when i execute pandas-profiling package it won't return min, max and mean values
When i profiling the following data using pandas-profiling==2.8.0 it won't return min, max and mean values.
CSV data
a,b,c
12,2.5,0
12,4.7,5
33,5,4
44,44.21,67
python code
import json
import pandas as pd
from pandas_profiling import…

ArunKumar
- 179
- 1
- 1
- 11
0
votes
0 answers
pandas_profiling print depreciation warning with matplotlib
Environment:
pandas_profiling - v2.8
Python - 3.7.1.
Shell - 3.2
MacOs - 10.15.6
When I make a report by running
import pandas_profiling as pdp
df = pd.read_csv('some.csv', sep='\t', encoding='utf-16')
report…

TFC
- 466
- 1
- 5
- 14
0
votes
0 answers
How to Import Pandas Profiling
I installed pandas-profiling by I cannot import it in Jupyter Notebook. This is the last part of the long import error I get.
ImportError: matplotlib is required for plotting when the default backend "matplotlib" is selected.
Any ideas on how I…
0
votes
0 answers
ModuleNotFoundError: No module named 'pandas_profiling' after pip install
I have tried to install pandas profiling using pip in a Jupyter notebook with python 3.6.
I get the following output for all install attempts I have tried:
install output:
I have tried:
!pip install pandas-profiling
!pip install…

Kevin
- 1
- 1
0
votes
1 answer
Unable to display progress bar on pandas_profiling
I wrote some code to read some data on an excel file using pandas and wanted to do some data analysis on it using pandas_profiling. However, since its taking too long, I wanted to see some sort of progress bar on how much work was done and ran…

heisenberg737
- 49
- 6
0
votes
0 answers
Unable to use Profile report of Pandas Profiling
The problem is that I am getting error:
module 'attr' has no attribute 's'
when using:
pandas_profiling.ProfileReport(df)
I don't understand the connection of error.
The error is very large but you can see a part here how it reached module…

Chinti
- 193
- 10
0
votes
2 answers
Unable to Install Pandas-profiling
I am trying to install Pandas-Profiling package for Jupyter Notebook but no luck!!!
Tried installing the package from the Anaconda Navigator (Home) -> Environment -> base(root) -> Search packages -> Pandas-profiling
A dialog box appears to show as…

mhnkmr
- 1
- 2