https://github.com/spektom/imdb-eda
IMDb exploratory data analysis example
https://github.com/spektom/imdb-eda
Last synced: 3 months ago
JSON representation
IMDb exploratory data analysis example
- Host: GitHub
- URL: https://github.com/spektom/imdb-eda
- Owner: spektom
- License: apache-2.0
- Created: 2018-05-19T08:48:45.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-05-21T05:50:55.000Z (about 7 years ago)
- Last Synced: 2025-01-20T16:53:28.815Z (4 months ago)
- Language: Jupyter Notebook
- Size: 50.8 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
imdb-eda
========Some EDA (Exploratory Data Analysis) on IMDB database.
See the [notebook](notebook.ipynb).
## Running locally
### Downloading IMDb data
First, download the data required for the notebook to run:
```bash
cd data/
wget -i urls.txt
```### Setting up Python
To setup development environment, run the following commands:
```bash
python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt
```### Running the notebook
To open the Jupyter notebook, run:
```bash
jupyter-notebook notebook.ipynb
```