Describe the bug
A clear and concise description of what the bug is.
If the description consists of multiple non-related bugs, you are encouraged to create separate issues.
To Reproduce
We would need to reproduce your scenario before being able to resolve it.
_Data:_
Please share your dataframe.
If the data is confidential, for example when it contains company-sensitive information, provide us with a synthetic or open dataset that produces the same error.
You should provide the DataFrame structure, for example by reporting the output of df.info().
You can anonymize the column names if necessary.
_Code:_ Preferably, use this code format:
"""
Test for issue XXX:
https://github.com/pandas-profiling/pandas-profiling/issues/XXX
"""
import pandas as pd
import pandas_profiling
def test_issueXXX():
df = pd.read_csv(r'<file>')
# Minimal reproducible code
Version information:
Version information is essential in reproducing and resolving bugs. Please report:
pip_: If you are using pip, run pip freeze in your environment and report the results. The list of packages can be rather long, you can use the snippet below to collapse the output.Click to expand Version information
<<< Put your version information here >>>
Additional context
Add any other context about the problem here.
I have pandas-profiling installed, but running the task has no results
Could you provide the minimal information to reproduce this error?
pip freeze > packages.txt)df.head(), df.info())I encountered the same issue. It turned out to be caused by the lower version of jupyter_core that misses secure_write module.
I fixed it by updating the jupyter version:
pip install --upgrade jupyter_client
I encountered the same issue. It turned out to be caused by the lower version of jupyter_core that misses secure_write module.
I fixed it by updating the jupyter version:
pip install --upgrade jupyter_client
thank you very much.
Most helpful comment
I encountered the same issue. It turned out to be caused by the lower version of jupyter_core that misses secure_write module.
I fixed it by updating the jupyter version:
pip install --upgrade jupyter_client