Skip to content

scikit-learn

scikit-learn is a simple and efficient tools for data mining and data analysis

  • Accessible to everybody, and reusable in various contexts
  • Built on NumPy, SciPy, and matplotlib
  • Open source, commercially usable - BSD license

Using scikit-learn

To initialize the environment use the module command:

[elx]% python
>>> from sklearn import datasets
>>> iris = datasets.load_iris()
>>> digits = datasets.load_digits()