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
4
votes
1 answer
Pandas Profiling doesn't display the output
Good Morning,
I have the following dataframe:
print(df)
Company ... Sales
0 Medi ltd. ... 4.16000
1 Pia ltd. ... 2.59907
[26958 rows x 15…

Alessandro Ceccarelli
- 1,775
- 5
- 21
- 41
3
votes
0 answers
How to create a Great Expectations Suite from a Pandas Profiling Report
As already stated in the title I want to generate so called 'assertions' via Great Expectation. I've done it the normal way by creating a connection to datasource. Now I want to combine it with Pandas Profiling, i.e. creating an Expectation Suite…

HenrikS
- 33
- 2
3
votes
1 answer
pandas profiling import error : not able to import pandas_profiling package
I cannot import name DataError from pandas.core.base
When I import package:
from pandas_profiling import ProfileReport
it shows error:
cannot import name 'DataError' from 'pandas.core.base'

Saurabh Gupta
- 31
- 4
3
votes
1 answer
NotImplementedError when calling pandas_profiling.ProfileReport.to_widgets() inside Apache Zeppelin
I'm trying to use the pandas_profiling package to automagically describe some data frames from inside Apaceh Zeppelin.
The code I'm running is:
%pyspark
import sys
print(sys.version_info)
import numpy as np
print("numpy: ", np.__version__)
import…

Lucas Soares
- 117
- 1
- 2
- 12
3
votes
1 answer
Is there a Pandas Profiling like implemention built on polars?
We use Pandas and Pandas Profiling extensively in our projects to generate profile reports. We were going to explore using Polars as a Pandas alternative and wanted to check if there were any implementations like Pandas Profiling built on top of…

Shashi Deshetti
- 1,354
- 2
- 11
- 22
3
votes
1 answer
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…

Prasad Patil
- 45
- 1
- 8
3
votes
0 answers
Produce HTML output from AWS EMR Jupyter Notebook
I'm currently running a default/basic notebook on EMR (Release label: emr-6.1.0, Applications: Spark 3.0.0, Zeppelin 0.9.0, JupyterHub 1.1.0) and i'm having some issues getting the notebook to output a data profiling report in HTML.
I've installed…

Tbailey20
- 85
- 6
3
votes
0 answers
Flask Web App outputting Pandas Profiling into a new HTML page in web browser
I have a python Flask web app that using plotly's dash app to upload CSV/txt files to be processed using Pandas Profiling. Everything works great on my local server but once I publish it to Azure Web app it no longer produces the new HTML file with…

jodood
- 51
- 3
3
votes
1 answer
Pandas Profiling KeyError
When running below code, running into error KeyError: 'Requested level (var1) does not match index name (None)'. I used python=3.7, jupyterlab=2.1.4, pandas-profiling=2.8. I tried to install previous pandas-profiling versions. But had the same…

hlan2
- 31
- 3
3
votes
1 answer
How to know which version of pandas-profiling I'm using?
I'm using google colab for programming. I just wanted to know which version of the pandas_profiling package I'm using.
I tried with the below options. None of them…

Venkatesh Gandi
- 441
- 1
- 9
- 24
3
votes
1 answer
pandas_profiling taking way too long to run
If anyone experimented with pandas-profiling package, help me with any insights you might have with making it run faster. The output report from the package is very neat and detailed, but creating the report takes way too long even with moderate…

RadV
- 53
- 1
- 5
3
votes
1 answer
Pandas Profiling Hide Tabs
Is there a way to display only specific tabs in the pandas profiling report output?
I am using pandas_profiling.ProfileReport(data) but I only need the Overview, Variables and Sample tabs. So is there an option to hide the other tabs e.g. something…

Anthalon
- 99
- 2
- 8
2
votes
4 answers
PydanticImportError: `BaseSettings` has been moved to the `pydantic-settings` package
I have titanic dataset downloaded from kaggle.
I am implementing pandas's profiling by installing pandas_profiling
your contribution will be appreciated!
import pandas as pd
df =…

wonder_prit
- 23
- 4
2
votes
0 answers
Type of the return value must be pandas_profiling.report.presentation.core.renderable.Renderable; got ipywidgets.widgets.widget_box.VBox instead
It can't show the report as widgets in Pandas Profiling.
import numpy as np
import pandas as pd
import pandas_profiling as pp
from pandas_profiling import ProfileReport
df =…

SSJ
- 21
- 2
2
votes
0 answers
Profile report to PDF PANDAS_PROFILING
Hi I'm doing some EDA and I'm using pandas_profiling I would like to have something similar but in a pdf format, there is something like that a code a resource a library?
There is a way to make it better the profiling? I would like some help with…
user16239103