Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch to ydata-profiling #46

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ pip install streamlit-pandas-profiling

```python
import pandas as pd
import pandas_profiling
import ydata_profiling
import streamlit as st

from streamlit_pandas_profiling import st_profile_report
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ setup_requires =
setuptools >= 40.8.0
wheel
install_requires =
pandas-profiling
ydata-profiling
streamlit >= 0.63
2 changes: 1 addition & 1 deletion streamlit_pandas_profiling/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def st_profile_report(report, height=None, navbar=True, key=None):

Parameters
----------
report : pandas_profiling.ProfileReport
report : ydata_profiling.ProfileReport
The profile report instance to display.
height : int or None
Report height. If set to None, report will take full height, but
Expand Down
2 changes: 1 addition & 1 deletion streamlit_pandas_profiling/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version__ = "0.1.3"
__version__ = "0.1.4"
__release__ = True