/branches/v1.7.2/Classes/PHPExcel/Shared/trend/bestFitClass.php

# · PHP · 331 lines · 212 code · 79 blank · 40 comment · 55 complexity · 493180be902a8d29da8021fb632b6bcd MD5 · raw file

  1. <?php
  2. /**
  3. * PHPExcel
  4. *
  5. * Copyright (c) 2006 - 2010 PHPExcel
  6. *
  7. * This library is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU Lesser General Public
  9. * License as published by the Free Software Foundation; either
  10. * version 2.1 of the License, or (at your option) any later version.
  11. *
  12. * This library is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  15. * Lesser General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU Lesser General Public
  18. * License along with this library; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
  20. *
  21. * @category PHPExcel
  22. * @package PHPExcel_Shared_Best_Fit
  23. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  24. * @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
  25. * @version ##VERSION##, ##DATE##
  26. */
  27. /**
  28. * PHPExcel_Best_Fit
  29. *
  30. * @category PHPExcel
  31. * @package PHPExcel_Shared_Best_Fit
  32. * @copyright Copyright (c) 2006 - 2010 PHPExcel (http://www.codeplex.com/PHPExcel)
  33. */
  34. class PHPExcel_Best_Fit
  35. {
  36. protected $_error = False;
  37. protected $_bestFitType = 'undetermined';
  38. protected $_valueCount = 0;
  39. protected $_xValues = array();
  40. protected $_yValues = array();
  41. protected $_adjustToZero = False;
  42. protected $_yBestFitValues = array();
  43. protected $_goodnessOfFit = 1;
  44. protected $_stdevOfResiduals = 0;
  45. protected $_covariance = 0;
  46. protected $_correlation = 0;
  47. protected $_SSRegression = 0;
  48. protected $_SSResiduals = 0;
  49. protected $_DFResiduals = 0;
  50. protected $_F = 0;
  51. protected $_slope = 0;
  52. protected $_slopeSE = 0;
  53. protected $_intersect = 0;
  54. protected $_intersectSE = 0;
  55. protected $_Xoffset = 0;
  56. protected $_Yoffset = 0;
  57. public function getError() {
  58. return $this->_error;
  59. } // function getBestFitType()
  60. public function getBestFitType() {
  61. return $this->_bestFitType;
  62. } // function getBestFitType()
  63. public function getValueOfYForX($xValue) {
  64. return False;
  65. } // function getValueOfYForX()
  66. public function getValueOfXForY($yValue) {
  67. return False;
  68. } // function getValueOfXForY()
  69. public function getXValues() {
  70. return $this->_xValues;
  71. } // function getValueOfXForY()
  72. public function getEquation($dp=0) {
  73. return False;
  74. } // function getEquation()
  75. public function getSlope($dp=0) {
  76. if ($dp != 0) {
  77. return round($this->_slope,$dp);
  78. }
  79. return $this->_slope;
  80. } // function getSlope()
  81. public function getSlopeSE($dp=0) {
  82. if ($dp != 0) {
  83. return round($this->_slopeSE,$dp);
  84. }
  85. return $this->_slopeSE;
  86. } // function getSlopeSE()
  87. public function getIntersect($dp=0) {
  88. if ($dp != 0) {
  89. return round($this->_intersect,$dp);
  90. }
  91. return $this->_intersect;
  92. } // function getIntersect()
  93. public function getIntersectSE($dp=0) {
  94. if ($dp != 0) {
  95. return round($this->_intersectSE,$dp);
  96. }
  97. return $this->_intersectSE;
  98. } // function getIntersectSE()
  99. public function getGoodnessOfFit($dp=0) {
  100. if ($dp != 0) {
  101. return round($this->_goodnessOfFit,$dp);
  102. }
  103. return $this->_goodnessOfFit;
  104. } // function getGoodnessOfFit()
  105. public function getGoodnessOfFitPercent($dp=0) {
  106. if ($dp != 0) {
  107. return round($this->_goodnessOfFit * 100,$dp);
  108. }
  109. return $this->_goodnessOfFit * 100;
  110. } // function getGoodnessOfFitPercent()
  111. public function getStdevOfResiduals($dp=0) {
  112. if ($dp != 0) {
  113. return round($this->_stdevOfResiduals,$dp);
  114. }
  115. return $this->_stdevOfResiduals;
  116. } // function getStdevOfResiduals()
  117. public function getSSRegression($dp=0) {
  118. if ($dp != 0) {
  119. return round($this->_SSRegression,$dp);
  120. }
  121. return $this->_SSRegression;
  122. } // function getSSRegression()
  123. public function getSSResiduals($dp=0) {
  124. if ($dp != 0) {
  125. return round($this->_SSResiduals,$dp);
  126. }
  127. return $this->_SSResiduals;
  128. } // function getSSResiduals()
  129. public function getDFResiduals($dp=0) {
  130. if ($dp != 0) {
  131. return round($this->_DFResiduals,$dp);
  132. }
  133. return $this->_DFResiduals;
  134. } // function getDFResiduals()
  135. public function getF($dp=0) {
  136. if ($dp != 0) {
  137. return round($this->_F,$dp);
  138. }
  139. return $this->_F;
  140. } // function getF()
  141. public function getCovariance($dp=0) {
  142. if ($dp != 0) {
  143. return round($this->_covariance,$dp);
  144. }
  145. return $this->_covariance;
  146. } // function getCovariance()
  147. public function getCorrelation($dp=0) {
  148. if ($dp != 0) {
  149. return round($this->_correlation,$dp);
  150. }
  151. return $this->_correlation;
  152. } // function getCorrelation()
  153. public function getYBestFitValues() {
  154. return $this->_yBestFitValues;
  155. } // function getYBestFitValues()
  156. protected function _calculateGoodnessOfFit($sumX,$sumY,$sumX2,$sumY2,$sumXY,$meanX,$meanY, $const) {
  157. $SSres = $SScov = $SScor = $SStot = $SSsex = 0.0;
  158. foreach($this->_xValues as $xKey => $xValue) {
  159. $bestFitY = $this->_yBestFitValues[$xKey] = $this->getValueOfYForX($xValue);
  160. $SSres += ($this->_yValues[$xKey] - $bestFitY) * ($this->_yValues[$xKey] - $bestFitY);
  161. if ($const) {
  162. $SStot += ($this->_yValues[$xKey] - $meanY) * ($this->_yValues[$xKey] - $meanY);
  163. } else {
  164. $SStot += $this->_yValues[$xKey] * $this->_yValues[$xKey];
  165. }
  166. $SScov += ($this->_xValues[$xKey] - $meanX) * ($this->_yValues[$xKey] - $meanY);
  167. if ($const) {
  168. $SSsex += ($this->_xValues[$xKey] - $meanX) * ($this->_xValues[$xKey] - $meanX);
  169. } else {
  170. $SSsex += $this->_xValues[$xKey] * $this->_xValues[$xKey];
  171. }
  172. }
  173. $this->_SSResiduals = $SSres;
  174. $this->_DFResiduals = $this->_valueCount - 1 - $const;
  175. if ($this->_DFResiduals == 0.0) {
  176. $this->_stdevOfResiduals = 0.0;
  177. } else {
  178. $this->_stdevOfResiduals = sqrt($SSres / $this->_DFResiduals);
  179. }
  180. if (($SStot == 0.0) || ($SSres == $SStot)) {
  181. $this->_goodnessOfFit = 1;
  182. } else {
  183. $this->_goodnessOfFit = 1 - ($SSres / $SStot);
  184. }
  185. $this->_SSRegression = $this->_goodnessOfFit * $SStot;
  186. $this->_covariance = $SScov / $this->_valueCount;
  187. $this->_correlation = ($this->_valueCount * $sumXY - $sumX * $sumY) / sqrt(($this->_valueCount * $sumX2 - pow($sumX,2)) * ($this->_valueCount * $sumY2 - pow($sumY,2)));
  188. $this->_slopeSE = $this->_stdevOfResiduals / sqrt($SSsex);
  189. $this->_intersectSE = $this->_stdevOfResiduals * sqrt(1 / ($this->_valueCount - ($sumX * $sumX) / $sumX2));
  190. if ($this->_SSResiduals != 0.0) {
  191. if ($this->_DFResiduals == 0.0) {
  192. $this->_F = 0.0;
  193. } else {
  194. $this->_F = $this->_SSRegression / ($this->_SSResiduals / $this->_DFResiduals);
  195. }
  196. } else {
  197. if ($this->_DFResiduals == 0.0) {
  198. $this->_F = 0.0;
  199. } else {
  200. $this->_F = $this->_SSRegression / $this->_DFResiduals;
  201. }
  202. }
  203. } // function _calculateGoodnessOfFit()
  204. protected function _leastSquareFit($yValues, $xValues, $const) {
  205. // calculate sums
  206. $x_sum = array_sum($xValues);
  207. $y_sum = array_sum($yValues);
  208. $meanX = $x_sum / $this->_valueCount;
  209. $meanY = $y_sum / $this->_valueCount;
  210. $mBase = $mDivisor = $xx_sum = $xy_sum = $yy_sum = 0.0;
  211. for($i = 0; $i < $this->_valueCount; ++$i) {
  212. $xy_sum += $xValues[$i] * $yValues[$i];
  213. $xx_sum += $xValues[$i] * $xValues[$i];
  214. $yy_sum += $yValues[$i] * $yValues[$i];
  215. if ($const) {
  216. $mBase += ($xValues[$i] - $meanX) * ($yValues[$i] - $meanY);
  217. $mDivisor += ($xValues[$i] - $meanX) * ($xValues[$i] - $meanX);
  218. } else {
  219. $mBase += $xValues[$i] * $yValues[$i];
  220. $mDivisor += $xValues[$i] * $xValues[$i];
  221. }
  222. }
  223. // calculate slope
  224. // $this->_slope = (($this->_valueCount * $xy_sum) - ($x_sum * $y_sum)) / (($this->_valueCount * $xx_sum) - ($x_sum * $x_sum));
  225. $this->_slope = $mBase / $mDivisor;
  226. // calculate intersect
  227. // $this->_intersect = ($y_sum - ($this->_slope * $x_sum)) / $this->_valueCount;
  228. if ($const) {
  229. $this->_intersect = $meanY - ($this->_slope * $meanX);
  230. } else {
  231. $this->_intersect = 0;
  232. }
  233. $this->_calculateGoodnessOfFit($x_sum,$y_sum,$xx_sum,$yy_sum,$xy_sum,$meanX,$meanY,$const);
  234. } // function _leastSquareFit()
  235. function __construct($yValues, $xValues=array(), $const=True) {
  236. // Calculate number of points
  237. $nY = count($yValues);
  238. $nX = count($xValues);
  239. // Define X Values if necessary
  240. if ($nX == 0) {
  241. $xValues = range(1,$nY);
  242. $nX = $nY;
  243. } elseif ($nY != $nX) {
  244. // Ensure both arrays of points are the same size
  245. $this->_error = True;
  246. return False;
  247. }
  248. $this->_valueCount = $nY;
  249. $this->_xValues = $xValues;
  250. $this->_yValues = $yValues;
  251. } // function __construct()
  252. } // class bestFit