Pandas-profiling: I have pandas-profiling installed, but running the task has no results

Created on 1 Jan 2020  ·  4Comments  ·  Source: pandas-profiling/pandas-profiling

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:

  • _Python version_: Your exact Python version.
  • _Environment_: Where do you run the code? Command line, IDE (PyCharm, Spyder, IDLE etc.), Jupyter Notebook (Colab or local)
  • _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.

bug 🐛 needs more information ❔

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

All 4 comments

I have pandas-profiling installed, but running the task has no results

Could you provide the minimal information to reproduce this error?

  • the minimal code you are using to generate the report
  • which environment you are using (jupyter notebook, console or IDE) and packages (pip freeze > packages.txt)
  • a sample or description of the dataset (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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

jes08701 picture jes08701  ·  6Comments

romainx picture romainx  ·  5Comments

castorfou picture castorfou  ·  5Comments

shahanesanket picture shahanesanket  ·  6Comments

jankaWIS picture jankaWIS  ·  3Comments