PHP code example of maxleonov / cakephp-clope-clustering-plugin
1. Go to this page and download the library: Download maxleonov/cakephp-clope-clustering-plugin library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
maxleonov / cakephp-clope-clustering-plugin example snippets
$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);