From a273923afbb7358e6db62f9f723fd8712cf717e5 Mon Sep 17 00:00:00 2001 From: Viggy Kumaresan Date: Mon, 15 Oct 2018 23:00:34 -0400 Subject: [PATCH] Added installation steps and documentation (#18921) Wrote description, installation steps, and documentation link. --- .../pages/guide/english/data-science-tools/scikit/index.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/client/src/pages/guide/english/data-science-tools/scikit/index.md b/client/src/pages/guide/english/data-science-tools/scikit/index.md index eb5c28b434..84615f2ac7 100644 --- a/client/src/pages/guide/english/data-science-tools/scikit/index.md +++ b/client/src/pages/guide/english/data-science-tools/scikit/index.md @@ -2,11 +2,14 @@ title: scikit-learn --- ## Scikit-learn -Scikit-learn is an open source machine learning library build for python programming language. Scikit-learn is simple to use and comes up with a range of supervised and unsupervised machine learning algorithm. This library was developed by David Cournapeau as a part of his Google Summer of Code project. + +Scikit-learn is a popular open-source machine learning library for Python, built off of previous packages like numpy and scipy. There is code available to handle everything from importing data and data cleaning to model preparation and testing. ## Installation To install scikit-learn in a conda environment: `conda install scikit-learn`
To install scikit-learn with pip: `pip install scikit-learn` -

For more information visit the Scikit-learn Website, Scikit-learn Github Repository. +## References +Scikit-learn main page: http://scikit-learn.org/stable/ +Tutorials: http://scikit-learn.org/stable/tutorial/index.html \ No newline at end of file