Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/fracpete/wekamooc

Code examples for the MOOC series "Data Mining with Weka" - https://weka.waikato.ac.nz/
https://github.com/fracpete/wekamooc

examples groovy mooc python27 weka

Last synced: 15 days ago
JSON representation

Code examples for the MOOC series "Data Mining with Weka" - https://weka.waikato.ac.nz/

Awesome Lists containing this project

README

        

WekaMOOC
========

Contains code examples for the MOOC series *Data Mining with Weka*:

https://weka.waikato.ac.nz/

You can use the `WEKAMOOC_DATA` environment variable to point the
scripts to the correct data directory, rather than changing the
directory in each of the scripts manually.

Requires version 0.2.0 (or later) of the python-weka-wrapper library
for the Python examples.

On Linux or Mac OSX, you can do this in the terminal as follows:

* just for the current command:


WEKAMOOC_DATA=/home/me/somewhere/data python class-1.3.py
WEKAMOOC_DATA=/home/me/somewhere/data python class-1.4.py

* for the current shell session:


export WEKAMOOC_DATA=/home/me/somewhere/data
python class-1.3.py
python class-1.4.py

For Windows, you can do this in the command prompt as follows:


set WEKAMOOC_DATA=C:\some\where
python class-1.3.py
python class-1.4.py