https://github.com/8451/association-mining-workshop
Workshop that covers a simple data science topic
https://github.com/8451/association-mining-workshop
Last synced: about 1 year ago
JSON representation
Workshop that covers a simple data science topic
- Host: GitHub
- URL: https://github.com/8451/association-mining-workshop
- Owner: 8451
- License: gpl-3.0
- Created: 2018-09-17T23:26:40.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-09-20T22:42:00.000Z (over 7 years ago)
- Last Synced: 2025-02-07T14:14:32.825Z (over 1 year ago)
- Language: Jupyter Notebook
- Size: 20.5 KB
- Stars: 0
- Watchers: 5
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 84.51º Assocation Rule Mining Workshop
This is a Jupyter Notebook to show off the basic
Association Rule data mining technique.
## Running the code:
### Pre-Requisites
- Clone this repository locally
- Docker Installed and Ready to Go or Python3 ready to go
#### Docker
```bash
# cd to cloned directory
$ docker build --tag e451-workshop .
$ docker run -p 8888:8888 e451-workshop
```
#### Python
```bash
$ virtualenv --python python3 env
$ source env/bin/activate
(env) $ pip install -r requirements.txt
(env) $ jupyter notebook
```
Navigate to [here](http://localhost:8888/), and type the
token shown in your window.