SciPy or sklearn

3111
2
Jump to solution
01-07-2016 04:27 AM
amroqarrot
New Contributor III

I want information about SciPy library and a library sklearn programming in python

1 Solution

Accepted Solutions
DanPatterson_Retired
MVP Emeritus

Luke... Perhaps they don't have internet connections...aahum... but as an alternative, they can get information on scipy by

  • install ArcGIS pro, since it installs python 3.4.1 which comes with scipy
  • the Canopy and Anaconda python distributions of python both ship a recent version of scikit-learn,
>>> import scipy
>>> help(scipy)
Help on package scipy:
NAME
    scipy
DESCRIPTION
    SciPy: A scientific computing package for Python
    ================================================
    Documentation is available in the docstrings and
    online at http://docs.scipy.org.
#

View solution in original post

2 Replies
LukeSturtevant
Occasional Contributor III

Did you already look at the scipy site​ references? And are you referring to Scikit-Learn?

DanPatterson_Retired
MVP Emeritus

Luke... Perhaps they don't have internet connections...aahum... but as an alternative, they can get information on scipy by

  • install ArcGIS pro, since it installs python 3.4.1 which comes with scipy
  • the Canopy and Anaconda python distributions of python both ship a recent version of scikit-learn,
>>> import scipy
>>> help(scipy)
Help on package scipy:
NAME
    scipy
DESCRIPTION
    SciPy: A scientific computing package for Python
    ================================================
    Documentation is available in the docstrings and
    online at http://docs.scipy.org.
#