Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/okld/streamlit-pandas-profiling
Pandas profiling component for Streamlit.
https://github.com/okld/streamlit-pandas-profiling
data-science demo pandas pandas-profiling python streamlit streamlit-component streamlit-pandas-profiling
Last synced: about 1 month ago
JSON representation
Pandas profiling component for Streamlit.
- Host: GitHub
- URL: https://github.com/okld/streamlit-pandas-profiling
- Owner: okld
- License: mit
- Created: 2020-06-27T17:22:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2024-03-04T14:55:03.000Z (8 months ago)
- Last Synced: 2024-09-29T17:40:55.594Z (about 1 month ago)
- Topics: data-science, demo, pandas, pandas-profiling, python, streamlit, streamlit-component, streamlit-pandas-profiling
- Language: TypeScript
- Homepage: https://share.streamlit.io/okld/streamlit-gallery/main?p=pandas-profiling
- Size: 7.29 MB
- Stars: 343
- Watchers: 3
- Forks: 39
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 📈 Streamlit Pandas Profiling
[![GitHub][github_badge]][github_link] [![PyPI][pypi_badge]][pypi_link]
## Installation
```sh
pip install streamlit-pandas-profiling
```## Getting started
```python
import pandas as pd
import pandas_profiling
import streamlit as stfrom streamlit_pandas_profiling import st_profile_report
df = pd.read_csv("https://storage.googleapis.com/tf-datasets/titanic/train.csv")
pr = df.profile_report()st_profile_report(pr)
```## Demo
[![Open in Streamlit][share_badge]][share_link]
[![Preview][share_img]][share_link]
[share_badge]: https://static.streamlit.io/badges/streamlit_badge_black_white.svg
[share_link]: https://share.streamlit.io/okld/streamlit-gallery/main?p=pandas-profiling
[share_img]: https://raw.githubusercontent.com/okld/streamlit-pandas-profiling/main/preview.png[github_badge]: https://badgen.net/badge/icon/GitHub?icon=github&color=black&label
[github_link]: https://github.com/okld/streamlit-pandas-profiling[pypi_badge]: https://badgen.net/pypi/v/streamlit-pandas-profiling?icon=pypi&color=black&label
[pypi_link]: https://pypi.org/project/streamlit-pandas-profiling