maxleonov / cakephp-clope-clustering-plugin
Cake-PHP plugin for CLOPE clustering algorithm
Installs: 16
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 3
Forks: 1
Type:cakephp-plugin
Requires
This package is not auto-updated.
Last update: 2024-11-09 16:27:07 UTC
README
Cake-PHP plugin for CLOPE clustering algorithm
Installation
cd my_cake_app/app
git clone git://github.com/maxleonov/cakephp-clope-clustering-plugin.git Plugin/ClopeClustering
add plugin loading in Config/bootstrap.php
CakePlugin::load('ClopeClustering');
add tables from docs/Database/database.sql
Usage
$Clope = ClassRegistry::init('ClopeClustering.Clope'); $params = array( 'repulsion' => 2.0, ); $transactions = array( array('a1', 'a2', 'a3'), array('a1', 'a2', 'a3', 'a4'), array('a1', 'a2', 'a3', 'a4'), array('a5', 'a6', 'a7'), array('a5', 'a6', 'a7'), array('a8', 'a9', 'a10') ); $Clope->clusterize($transactions, $params);