Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/okwilkins/retailanalysis

A comprehensive exploratory analysis and implementation of kmeans/hierarchical clustering on online retail data.
https://github.com/okwilkins/retailanalysis

data-analysis data-science machine-learning statistics

Last synced: 25 days ago
JSON representation

A comprehensive exploratory analysis and implementation of kmeans/hierarchical clustering on online retail data.

Awesome Lists containing this project

README

        

# Retail Analysis

This project is for a technical test for Laing O'Rourke.
The analysis is based off the dataset [here](http://archive.ics.uci.edu/ml/datasets/Online+Retail#).

## Installation

Make sure you are running Python 3.6 and above.

Clone the repository with the following command and cd into the directory:
```bash
git clone https://github.com/HomelessSandwich/RetailAnalysis.git
cd RetailAnalysis
```

Use the package manager [pip](https://pip.pypa.io/en/stable/).
It is recommended that you upgrade all relevant packages to their latest version for all visualisations to work.

```bash
pip install --user --upgrade -r requirements.txt
pip install jupyterlab
```

## Usage

In order to run the Jupyter Notebook file, run the following command and open `Online Retail EDA & Modelling.ipynb`.
```bash
jupyter lab
```

If the above command does not work, try one of the following:
```bash
jupyter-lab
```

```bash
jupyter notebook
```