diff --git a/Cluster.php b/Cluster.php index c627140..7be0cbd 100644 --- a/Cluster.php +++ b/Cluster.php @@ -15,7 +15,7 @@ class Cluster { private $clusterId; public $clusterSize; public $peerClusterRatioNorm; - private $bgColor = "white"; + public $bgColor = "white"; private $range = 0.20; public function __construct($clusterArray = array(), $clusterId) { diff --git a/View.php b/View.php index 0c3bdce..f095382 100644 --- a/View.php +++ b/View.php @@ -52,7 +52,7 @@ class View { } private function calcPeerClusterRatio() { - $this->peerClusterRatioRef = round($this->peerCount / $this->clusterCount,5); + $this->peerClusterRatioRef = round($this->peerCount / $this->clusterCount, 5); $variance = 0.0; $medianArray = array(); foreach ($this->clusterList as $value) { @@ -62,13 +62,13 @@ class View { } $variance /= $this->peerCount; - $this->peerClusterRatioNormVar = round($variance,5); - $this->peerClusterRatioNormStDev = round(sqrt($variance),5); + $this->peerClusterRatioNormVar = round($variance, 5); + $this->peerClusterRatioNormStDev = round(sqrt($variance), 5); asort($medianArray); $medianArraySize = count($medianArray); - $medianMidIndex = round(($medianArraySize - 1) / 2,0,PHP_ROUND_HALF_DOWN); + $medianMidIndex = round(($medianArraySize - 1) / 2, 0, PHP_ROUND_HALF_DOWN); if ($medianArraySize % 2 == 0) { $this->peerClusterRatioNormMed = ($medianArray[$medianMidIndex] + $medianArray[$medianMidIndex + 1]) / 2; } else { @@ -94,10 +94,57 @@ class View { $table .= "