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
2 answers
Duplicate values pandas
I am new to pandas.
I have been trying to solve a problem here
This is the problem statement where I want to drop any row where I have a duplicate A but non duplicate B
Here is the kind of output I want
enter image description here

Krishan
- 1
- 1
0
votes
1 answer
How to use pandas_profiling with a large database table
I'm trying to use pandas_profiling to profile a table.
It has around 20 columns most of them are float and almost 3 millions records.
I got the following error :
Traceback (most recent call last): File "V:\Python\prof.py", line
53, in
if…

Linus
- 95
- 1
- 9
0
votes
2 answers
Why pandas profiling isn't showing any output in ipython?
I've a quick question about "pandas_profiling" .So basically i'm trying to use the pandas 'profiling' but instead of showing the output it says something like this:
Where i'm making the mistake?? or…

gyanender singh
- 33
- 7
0
votes
1 answer
pandas-profiling issues with cx_Freeze
I'm using cx_freeze to convert my Python app to Windows executable file. I am using pandas-profiling package in one of my scripts. When I run my exe file I get the following error:
File…

Ronnie
- 391
- 2
- 6
- 19
0
votes
1 answer
changing pandas_profiling's report width size
How can I change pandas_profiling's report width size? now at jupyther lab/notebook other cells are fit to the monitor width but the pandas_profiling's report's width is narrow.

Reza energy
- 135
- 7
0
votes
1 answer
Pandas_profiling-1.4.1 throws ZeroDivisionError for valid data set ,Which pandas version is stable?
Pandas_profiling-1.4.1 throws ZeroDivisionError for valid sample data set, which pandas version is stable?
Is it due to pandas library open issue? ZeroDivisionError when using version 1.4.1
I tried with pandas 1.4.0 but it is running infinitely…

SundarJavaDeveloper
- 3,531
- 3
- 17
- 11
0
votes
0 answers
missing unique(%) values and broken bar charts in pandas profile 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
0
votes
1 answer
Pandas Profiling 1.4 issue with Pycharm and windows 7 terminal
Showing this error while executing Pandas Profiling on pycharm or windows terminal
Pycharm latest
Python version 3.6
Windows 7
Pandas profiling 1.4
pandas_profiling.ProfileReport(df) :
RuntimeError: An attempt has been made to start a new…

DeshDeep Singh
- 1,817
- 2
- 23
- 43
0
votes
3 answers
Pandas Profiling - NameError: name 'pandas_profiling' is not defined
Experts,
Here is my block of code and I am getting the below error.
import pandas
import os
trainFile = r'C:\PythonProjects\sample.csv'
pwd = os.getcwd()
os.chdir(os.path.dirname(trainFile))
trainData =…

user3512380
- 1
- 1
- 1
- 2
0
votes
2 answers
Why can't I install pandas-profiling on Cloud Datalab?
One of the main tools I like for initial data exploration:
Error message:
!pip install pandas-profiling
Downloading/unpacking pandas-profiling
Could not find a version that satisfies the requirement pandas- profiling (from versions: 1.0.0a1,…

dartdog
- 10,432
- 21
- 72
- 121
-1
votes
1 answer
Pandas_profiling package is causing errror
When I try to from pandas_profiling import ProfileReport I'm getting this error:
PydanticImportError: 'BaseSettings' has been moved to the 'pydantic-settings' package. See…

Kallal Ghosh
- 1
- 1
-1
votes
1 answer
Import error while trying to import ydata profiling
I have installed ydata but I'm unable to import profile report, it's showing ProfileReport isn't accessed. I've updated pandas version, anaconda version and all other dependencies. If anyone knows please help!
I also tried to import ydata_profiling…

Amy
- 1
-1
votes
1 answer
Why is my pandas profile report saving in my root directory?
def get_profile(dataframe: pd.DataFrame, file_name: str ="Pandas Profiling Report", show: bool = False):
dataframe_profile = ProfileReport(dataframe, title= file_name)
dataframe_profile.to_file(file_name)
if show:
…

bladerunna84
- 1
- 1
-1
votes
1 answer
How to do Data profile to a table using pandas_profiling
When I'm trying to do data profiling one sql server table by using pandas_profiling throwing an error like
An attempt has been made to start a new process before the
current process has finished its bootstrapping phase.
This probably…

kiran Kumar
- 7
- 2
-2
votes
1 answer
How can I resolve the error when importing pandas_profiling for BigMart sales prediction project?
enter image description here
I am getting error in importing pandas_profiling. pls help me to resolve this problem.
Actually I am doing my college project BigMart Sales prediction for that I needed some library like klib,dtale,pandas_profiling for…

Abhinav Kotnala
- 1
- 1