StatisticFormula.cs 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. // Authors:
  2. // Francis Fisher ([email protected])
  3. //
  4. // (C) Francis Fisher 2013
  5. //
  6. // Permission is hereby granted, free of charge, to any person obtaining
  7. // a copy of this software and associated documentation files (the
  8. // "Software"), to deal in the Software without restriction, including
  9. // without limitation the rights to use, copy, modify, merge, publish,
  10. // distribute, sublicense, and/or sell copies of the Software, and to
  11. // permit persons to whom the Software is furnished to do so, subject to
  12. // the following conditions:
  13. //
  14. // The above copyright notice and this permission notice shall be
  15. // included in all copies or substantial portions of the Software.
  16. //
  17. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
  21. // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
  22. // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  23. // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. namespace System.Windows.Forms.DataVisualization.Charting
  25. {
  26. public class StatisticFormula
  27. {
  28. [MonoTODO]
  29. public AnovaResult Anova (double probability, string inputSeriesNames)
  30. {
  31. throw new NotImplementedException ();
  32. }
  33. [MonoTODO]
  34. public double BetaFunction (double m, double n)
  35. {
  36. throw new NotImplementedException ();
  37. }
  38. [MonoTODO]
  39. public double Correlation (string firstInputSeriesName, string secondInputSeriesName)
  40. {
  41. throw new NotImplementedException ();
  42. }
  43. [MonoTODO]
  44. public double Covariance (string firstInputSeriesName, string secondInputSeriesName)
  45. {
  46. throw new NotImplementedException ();
  47. }
  48. [MonoTODO]
  49. public double FDistribution (double value, int firstDegreeOfFreedom, int secondDegreeOfFreedom)
  50. {
  51. throw new NotImplementedException ();
  52. }
  53. [MonoTODO]
  54. public FTestResult FTest (double probability, string firstInputSeriesName, string secondInputSeriesName)
  55. {
  56. throw new NotImplementedException ();
  57. }
  58. [MonoTODO]
  59. public double GammaFunction (double value)
  60. {
  61. throw new NotImplementedException ();
  62. }
  63. [MonoTODO]
  64. public double InverseFDistribution (double probability, int firstDegreeOfFreedom, int secondDegreeOfFreedom){
  65. throw new NotImplementedException ();
  66. }
  67. [MonoTODO]
  68. public double InverseNormalDistribution (double probability)
  69. {
  70. throw new NotImplementedException ();
  71. }
  72. public double InverseTDistribution (double probability, int degreeOfFreedom)
  73. [MonoTODO]
  74. {
  75. throw new NotImplementedException ();
  76. }
  77. [MonoTODO]
  78. public double Mean (string inputSeriesName)
  79. {
  80. throw new NotImplementedException ();
  81. }
  82. [MonoTODO]
  83. public double Median (string inputSeriesName)
  84. {
  85. throw new NotImplementedException ();
  86. }
  87. [MonoTODO]
  88. public double NormalDistribution (double zValue)
  89. {
  90. throw new NotImplementedException ();
  91. }
  92. [MonoTODO]
  93. public double TDistribution (double value, int degreeOfFreedom, bool oneTail)
  94. {
  95. throw new NotImplementedException ();
  96. }
  97. [MonoTODO]
  98. public TTestResult TTestEqualVariances (double hypothesizedMeanDifference, double probability,
  99. string firstInputSeriesName, string secondInputSeriesName)
  100. {
  101. throw new NotImplementedException ();
  102. }
  103. [MonoTODO]
  104. public TTestResult TTestPaired (double hypothesizedMeanDifference, double probability,
  105. string firstInputSeriesName, string secondInputSeriesName)
  106. {
  107. throw new NotImplementedException ();
  108. }
  109. [MonoTODO]
  110. public TTestResult TTestUnequalVariances (double hypothesizedMeanDifference, double probability,
  111. string firstInputSeriesName, string secondInputSeriesName)
  112. {
  113. throw new NotImplementedException ();
  114. }
  115. [MonoTODO]
  116. public double Variance (string inputSeriesName, bool sampleVariance)
  117. {
  118. throw new NotImplementedException ();
  119. }
  120. [MonoTODO]
  121. public ZTestResult ZTest (double hypothesizedMeanDifference, double varianceFirstGroup,
  122. double varianceSecondGroup, double probability,
  123. string firstInputSeriesName, string secondInputSeriesName)
  124. {
  125. throw new NotImplementedException ();
  126. }
  127. }
  128. }