Skip to content
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