1. Go to this page and download the library: Download codedheartinside/apriori 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/ */
codedheartinside / apriori example snippets
$installer = new \CodedHeartInside\DataMining\Apriori\Installer();
$installer->createRunningEnvironment();
$aprioriConfiguration = new \CodedHeartInside\DataMining\Apriori\Configuration();
// Configuring the boundries is optional
$aprioriConfiguration->setDisplayDebugInformation();
$aprioriConfiguration->setMinimumThreshold(2) // Default is 2
->setMinimumSupport(0.2) // Default is 0.1
->setMinimumConfidence(5) // Default is 0.2
;
$dataSet = array(
array(1, 3, 4),
array(2, 4, 6),
array(1, 2),
array(5),
);
$dataInput = new \CodedHeartInside\DataMining\Apriori\Data\Input($aprioriConfiguration);
$dataInput->flushDataSet()
->addDataSet($dataSet)
->addDataSet($dataSet) // In this case, the data set is added twice to create more testing data
;
$aprioriClass = new \CodedHeartInside\DataMining\Apriori\Apriori($aprioriConfiguration);
$aprioriClass->run();