public function actionTransitionMatrix()
 {
     $from = strtotime('today');
     $to = strtotime('tomorrow');
     $matrix = StatsHelper::transitionMatrix($from, $to);
     $windows = StatsHelper::windows($from, $to);
     $flattenMatrix = StatsHelper::flattenTransitionMatrix($matrix, $windows);
     foreach ($flattenMatrix as $key => $value) {
         echo $value['source'] . "\t" . $value['target'] . "\t" . $value['value'] . PHP_EOL;
     }
 }