1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
Orange Data Mining Library
==========================
Tutorial
--------
This is a gentle introduction on scripting in `Orange <http://orange.biolab.si>`_ , a Python 3 data mining library. We here assume you have already downloaded and installed Orange from its `github repository <https://github.com/biolab/orange3>`_ and have a working version of Python. In the command line or any Python environment, try to import Orange. Below, we used a Python shell::
% python
>>> import Orange
>>> Orange.version.version
'3.25.0.dev0+3bdef92'
>>>
If this leaves no error and warning, Orange and Python are properly installed and you are ready to continue with the tutorial.
.. toctree::
:maxdepth: 3
tutorial/data
tutorial/classification
tutorial/regression
.. ensembles
.. python-learners
Reference
---------
Available classes and methods.
.. toctree::
:maxdepth: 2
reference/data
reference/preprocess
reference/outliers
reference/classification
reference/regression
reference/clustering
reference/distance
reference/evaluation
reference/projection
reference/misc
|