Git Product home page Git Product logo

crad-clustering's Introduction

CRAD-Clustering

Python implementation of CRAD clustering algorithm (CRAD.py) and extended DBSCAN algorithm using CRAD framework (ExtensionToDBSCAN.py).

Setup

python setup.py install

Documentation

For CRAD-Clustering:

Call the function cal_adjM_cutOff(xxDist, StepSize, Nbin) to calculate adjancey matrix where

Inputs:

xxDist - A distance matrix using robust mahalanobis distance.

StepSize - Maximum steps of neighborhood you check in histogram to find optimal cut-off parameter.

Nbin - Number of bin in histogram to find optimal cut-off parameter.

Outputs:

An adjancey matrix

Then you call function clustering_(data, adj) to get the final clustering result, where

Inputs:

data - A m by n matrix where m corresponds to number of observations, and n corresponds to number of features.

adj - An adjancey matrix which is calculated in above step.

Output:

An array with either a cluster id number.

For Extended DBSCAN:

Call the function dbscan_newM(xxDist, StepSize, Nbin, min_points) where

Inputs:

xxDist - A distance matrix using robust mahalanobis distance

StepSize - Maximum steps of neighborhood you check in histogram to find optimal cut-off parameter

Nbin - Number of bin in histogram to find optimal cut-off parameter

min_points - The minimum number of points to make a cluster

Outputs:

An array with either a cluster id number.

crad-clustering's People

Contributors

datamining-clusteringanalysis avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.