https://github.com/dataprofessor/eda-app
https://github.com/dataprofessor/eda-app
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/dataprofessor/eda-app
- Owner: dataprofessor
- Created: 2021-02-07T12:05:13.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-07-07T02:18:28.000Z (about 3 years ago)
- Last Synced: 2025-04-05T07:41:28.521Z (over 1 year ago)
- Language: Python
- Size: 13.7 KB
- Stars: 46
- Watchers: 1
- Forks: 33
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# eda-app
# Watch the tutorial video
[How to build an EDA app using Pandas Profiling | Streamlit #19](https://youtu.be/p4uohebPuCg)
# Demo
Launch the web app:
[](https://share.streamlit.io/dataprofessor/eda-app/main/app.py)
# Reproducing this web app
To recreate this web app on your own computer, do the following.
### Create conda environment
Firstly, we will create a conda environment called *eda*
```
conda create -n eda python=3.8
```
Secondly, we will login to the *eda* environment
```
conda activate eda
```
### Install prerequisite libraries
Download requirements.txt file
```
wget https://raw.githubusercontent.com/dataprofessor/eda-app/main/requirements.txt
```
Pip install libraries
```
pip install -r requirements.txt
```
### Download and unzip contents from GitHub repo
Download and unzip contents from https://github.com/dataprofessor/eda-app/archive/main.zip
### Launch the app
```
streamlit run app.py
```
