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
2
votes
1 answer
ValueError when rendering html report using Pandas_profiling
I am getting the following error when running a profile report for a subset of my DataFrame.
ValueError: Value '6.180529706513958' should be a ratio between 1 and 0.
This works:
profile = ProfileReport(
df, title="Profile Report of the January…

Climbs_lika_Spyder
- 6,004
- 3
- 39
- 53
2
votes
1 answer
How to only generate the correlations and scatter plots using Pandas Profilling package?
I am handling a large dataset and I have used Pandas Profilling package. But since the dataset is large, the report is taking too long to generate and browsers are failing to open it.
So, I have use "mininmal=True" command, which excludes the…

Moinak Dey
- 83
- 2
- 11
2
votes
3 answers
pandas_profiling main method not working correctly on Windows 10... Constructor works but not method
df.profile_report() fails immediately after installation using
import pandas_profiling
The package is installed properly, because I can generate a report in Jupyter by importing and using just the constructor ProfileReport(df). However, the syntax…

Rich Lysakowski PhD
- 2,702
- 31
- 44
2
votes
2 answers
How to create a dataframe with multiple lists/arrays in python
I have many lists which consists of 1d data. like below:
list1 = [1,2,3,4...]
list2 = ['a','b','c'...]
Now, I have to create dataframe like below:
df = [[1,'a'],[2,'b'],[3,'c']]
I need this dataframe so that I can profile each column using…

MSNGH
- 33
- 4
2
votes
1 answer
Matplotlib pyplot plots look different after calling pandas profiling. How can I fix this?
I ran into a strange issue today. I stumbled over a package called pandas_profiling, which I think is quite nice. However, after calling the profiling, the plots in my jupyter notebook change.
The axis ticks aren't correct anymore and the whole look…

Schantall
- 21
- 1
1
vote
0 answers
Error in PyCaret AutoML Web App: Unexpected 'setup()' Argument 'silent' - How Can I Fix This?
I'm working on an AutoML web application using PyCaret, Streamlit, and pandas_profiling. My app allows users to upload a dataset, perform exploratory data analysis (EDA) with pandas_profiling, and build classification models using PyCaret. However,…

Vikas Sharma
- 11
- 4
1
vote
1 answer
Removing footer from 'Pandas Profiling' report
I generated an interactive output file using the auto visualization tool - 'Pandas Profiling'. There's a sentence at the bottom of the page that I want to remove.
Output file with the footer
This is my report generation code -->
def…

Apoorva
- 75
- 6
1
vote
0 answers
Pandas profiling package takes lot of time in generating html report
It takes more than 1 minute to generate HTML report for pandas data profiling. The profiling finishes in just 3s but the report takes most of the time, how can I optimize it.
profile = ProfileReport(df, title="Pandas Profiling…

Adwaita Jadhav
- 11
- 1
1
vote
1 answer
Unable to import pandas_profiling module, because of 'escape' from jinja2.utils dependency
from pandas_profiling import profile_report
=================================================
ImportError: cannot import name 'escape' from 'jinja2.utils' (/opt/conda/lib/python3.7/site-packages/jinja2/utils.py)

AvikumarT
- 15
- 5
1
vote
1 answer
how to recognize columns numeric and categorical in pandas using pandas profiling . only need dtype code not Analysis code of pandas profiling
I only need code to recognize the dtype of columns as done in pandas profiling (numeric and categorical) could you please extract only that code for me from pandas profiling package code.
series = series.fillna(np.nan)
# get `infer_dtypes` (bool)…

Abhishek Vashishth
- 25
- 1
- 3
1
vote
0 answers
in databricks notebook
while using to_notebook() & to_widgets() of pandas profiling in databricks notebook output looks like this.
is there a way i can get the actual output.
I tried with displayHTML(), it works only for to_html()
for…

roshan poojary
- 43
- 4
1
vote
1 answer
When using pandas_profiling: "ModuleNotFoundError: No module named 'visions.application'"
import numpy as np
import pandas as pd
from pandas_profiling import ProfileReport
Whilst importing pandas profile (please see above command), I am getting the following error…

MOT
- 81
- 6
1
vote
1 answer
Pandas Profiling, profile_report method error
I installed pandas-profiling with pip for jupyter notebook (not using conda!), and everything was working fine, until I installed plotly
Now, when I try to use the df.profile_report() method, I get the following error:
DispatchError: Function
hortajg
- 50
- 6
1
vote
1 answer
ERROR: Could not build wheels for phik, which is required to install pyproject.toml-based projects
While running this command on command prompt:
PS D:\Mitali> pip install pandas-profiling
I am getting this error:
ERROR: Could not build wheels for phik, which is required to install pyproject.toml-based projects
The entire error looks…

Mitali Jain
- 11
- 2
1
vote
0 answers
python pandas-profiling problem with installation
I'm trying to install pandas-profiling on linux by comand pip install pandas-profiling.
Unfortunately I get error with marukpsafe module:
ERROR: Could not find a version that satisfies the requirement markupsafe~=2.0.1 (from pandas-profiling) (from…

Maciej
- 81
- 7