File: RatioDataset.php

package info (click to toggle)
simplesamlphp 1.14.11-1%2Bdeb9u2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 15,024 kB
  • sloc: php: 72,337; xml: 1,078; python: 376; sh: 220; perl: 185; makefile: 57
file content (71 lines) | stat: -rw-r--r-- 1,547 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/*
 * @author Andreas Åkre Solberg <andreas.solberg@uninett.no>
 * @package SimpleSAMLphp
 */
class sspmod_statistics_RatioDataset extends sspmod_statistics_StatDataset {

	
	public function aggregateSummary() {
		/**
		 * Aggregate summary table from dataset. To be used in the table view.
		 */
		$this->summary = array(); 
		$noofvalues = array();
		foreach($this->results AS $slot => $res) {
			foreach ($res AS $key => $value) {
				if (array_key_exists($key, $this->summary)) {
					$this->summary[$key] += $value;
					if ($value > 0) 
						$noofvalues[$key]++;
				} else {
					$this->summary[$key] = $value;
					if ($value > 0) 
						$noofvalues[$key] = 1;
					else 
						$noofvalues[$key] = 0;
				}
			}
		}
		
		foreach($this->summary AS $key => $val) {
			$this->summary[$key] = $this->divide($this->summary[$key], $noofvalues[$key]);
		}
		
		asort($this->summary);
		$this->summary = array_reverse($this->summary, TRUE);
	}
	
	private function ag($k, $a) {
		if (array_key_exists($k, $a)) return $a[$k];
		return 0;
	}
	
	private function divide($v1, $v2) {
		if ($v2 == 0) return 0;
		return ($v1 / $v2);
	}
	
	public function combine($result1, $result2) {

		$combined = array();
		
		foreach($result2 AS $tick => $val) {
			$combined[$tick] = array();
			foreach($val AS $index => $num) {
				$combined[$tick][$index] = $this->divide( 
					$this->ag($index, $result1[$tick]),
					$this->ag($index, $result2[$tick])
				);
			}
			
		}
		return $combined;
	}
	
	public function getPieData() {
		return NULL;
	}

}