/eda-nps

Test hypotheses and verify assumptions with the help of summary statistics and graphical representations in the Net promoter Score dataset.

Primary LanguageJupyter Notebook

EDA (EXPLORATORY DATA ANALYSIS) IN NET PROMOTER SCORE DATASET

SETUP

Create a virtual environment

# with default
python -m venv .venv
# with specific version
python3.6 -m venv .venv

Activate the .venv

source .venv/Scripts/activate

Install all needed packages

# pip install "package_name"

# Main packages
pip install jupyter

Create or install the requirements

# create in case of missing file
pip freeze > requirements.txt

# or just install
pip install -r requirements.txt

RUN IN A BROWSER

jupyter-notebook

RUN LOCALLY

Select the kernel create with your .venv and you are good to go.