Metadata-Version: 2.1
Name: pyclustertend
Version: 1.0.2
Summary: A Package to assess cluster tendency
Home-page: https://github.com/lachhebo/pyclustertend
Author: Ismaël Lachheb
Author-email: ismael.lachheb@protonmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# pyclustertend [![Build Status](https://travis-ci.com/lachhebo/pyclustertend.svg?branch=master)](https://travis-ci.com/lachhebo/pyclustertend)

## Presentation : 

pyclustertend is a python package to do cluster tendency evaluation. Clustertendency consist to check if clusters exist in the data.

One method for assessing cluster tendency is currently implemented  :

- [x] Hopkins Statistics 

## Usage : 

```python
    D = pd.read_csv('Concrete_Data_Yeh.csv')
    from pyclustertend import Hopkins
    hop = Hopkins(D,200)
    score = hop.fit()
    print(score)
```


