using for loop to install conda package
This commit is contained in:
29
.CondaPkg/env/Lib/site-packages/scipy/cluster/__init__.py
vendored
Normal file
29
.CondaPkg/env/Lib/site-packages/scipy/cluster/__init__.py
vendored
Normal file
@@ -0,0 +1,29 @@
|
||||
"""
|
||||
=========================================
|
||||
Clustering package (:mod:`scipy.cluster`)
|
||||
=========================================
|
||||
|
||||
.. currentmodule:: scipy.cluster
|
||||
|
||||
:mod:`scipy.cluster.vq`
|
||||
|
||||
Clustering algorithms are useful in information theory, target detection,
|
||||
communications, compression, and other areas. The `vq` module only
|
||||
supports vector quantization and the k-means algorithms.
|
||||
|
||||
:mod:`scipy.cluster.hierarchy`
|
||||
|
||||
The `hierarchy` module provides functions for hierarchical and
|
||||
agglomerative clustering. Its features include generating hierarchical
|
||||
clusters from distance matrices,
|
||||
calculating statistics on clusters, cutting linkages
|
||||
to generate flat clusters, and visualizing clusters with dendrograms.
|
||||
|
||||
"""
|
||||
__all__ = ['vq', 'hierarchy']
|
||||
|
||||
from . import vq, hierarchy
|
||||
|
||||
from scipy._lib._testutils import PytestTester
|
||||
test = PytestTester(__name__)
|
||||
del PytestTester
|
||||
Reference in New Issue
Block a user