public void ValidateStdDev(double d1, double d2)
 {
     var n = new FisherSnedecor(d1, d2);
     if (d2 > 4)
     {
         Assert.AreEqual(Math.Sqrt(n.Variance), n.StdDev);
     }
 }
 public void ValidateToString()
 {
     var n = new FisherSnedecor(2d, 1d);
     Assert.AreEqual("FisherSnedecor(d1 = 2, d2 = 1)", n.ToString());
 }
 public void ValidateMode(double d1, double d2)
 {
     var n = new FisherSnedecor(d1, d2);
     if (d1 > 2)
     {
         Assert.AreEqual((d2 * (d1 - 2.0)) / (d1 * (d2 + 2.0)), n.Mode);
     }
 }
 public void ValidateSkewness(double d1, double d2)
 {
     var n = new FisherSnedecor(d1, d2);
     if (d2 > 6)
     {
         Assert.AreEqual((((2.0 * d1) + d2 - 2.0) * Math.Sqrt(8.0 * (d2 - 4.0))) / ((d2 - 6.0) * Math.Sqrt(d1 * (d1 + d2 - 2.0))), n.Skewness);
     }
 }
        /// <summary>
        /// Run example
        /// </summary>
        /// <a href="http://en.wikipedia.org/wiki/F-distribution">FisherSnedecor distribution</a>
        public void Run()
        {
            // 1. Initialize the new instance of the FisherSnedecor distribution class with parameter DegreesOfFreedom1 = 50, DegreesOfFreedom2 = 20.
            var fisherSnedecor = new FisherSnedecor(50, 20);
            Console.WriteLine(@"1. Initialize the new instance of the FisherSnedecor distribution class with parameters DegreesOfFreedom1 = {0}, DegreesOfFreedom2 = {1}", fisherSnedecor.DegreesOfFreedom1, fisherSnedecor.DegreesOfFreedom2);
            Console.WriteLine();

            // 2. Distributuion properties:
            Console.WriteLine(@"2. {0} distributuion properties:", fisherSnedecor);

            // Cumulative distribution function
            Console.WriteLine(@"{0} - Сumulative distribution at location '0.3'", fisherSnedecor.CumulativeDistribution(0.3).ToString(" #0.00000;-#0.00000"));

            // Probability density
            Console.WriteLine(@"{0} - Probability density at location '0.3'", fisherSnedecor.Density(0.3).ToString(" #0.00000;-#0.00000"));

            // Log probability density
            Console.WriteLine(@"{0} - Log probability density at location '0.3'", fisherSnedecor.DensityLn(0.3).ToString(" #0.00000;-#0.00000"));

            // Largest element in the domain
            Console.WriteLine(@"{0} - Largest element in the domain", fisherSnedecor.Maximum.ToString(" #0.00000;-#0.00000"));

            // Smallest element in the domain
            Console.WriteLine(@"{0} - Smallest element in the domain", fisherSnedecor.Minimum.ToString(" #0.00000;-#0.00000"));

            // Mean
            Console.WriteLine(@"{0} - Mean", fisherSnedecor.Mean.ToString(" #0.00000;-#0.00000"));

            // Mode
            Console.WriteLine(@"{0} - Mode", fisherSnedecor.Mode.ToString(" #0.00000;-#0.00000"));

            // Variance
            Console.WriteLine(@"{0} - Variance", fisherSnedecor.Variance.ToString(" #0.00000;-#0.00000"));

            // Standard deviation
            Console.WriteLine(@"{0} - Standard deviation", fisherSnedecor.StdDev.ToString(" #0.00000;-#0.00000"));

            // Skewness
            Console.WriteLine(@"{0} - Skewness", fisherSnedecor.Skewness.ToString(" #0.00000;-#0.00000"));
            Console.WriteLine();

            // 3. Generate 10 samples of the FisherSnedecor distribution
            Console.WriteLine(@"3. Generate 10 samples of the FisherSnedecor distribution");
            for (var i = 0; i < 10; i++)
            {
                Console.Write(fisherSnedecor.Sample().ToString("N05") + @" ");
            }

            Console.WriteLine();
            Console.WriteLine();

            // 4. Generate 100000 samples of the FisherSnedecor(50, 20) distribution and display histogram
            Console.WriteLine(@"4. Generate 100000 samples of the FisherSnedecor(50, 20) distribution and display histogram");
            var data = new double[100000];
            FisherSnedecor.Samples(data, 50, 20);
            ConsoleHelper.DisplayHistogram(data);
            Console.WriteLine();

            // 5. Generate 100000 samples of the FisherSnedecor(20, 10) distribution and display histogram
            Console.WriteLine(@"5. Generate 100000 samples of the FisherSnedecor(20, 10) distribution and display histogram");
            FisherSnedecor.Samples(data, 20, 10);
            ConsoleHelper.DisplayHistogram(data);
            Console.WriteLine();

            // 6. Generate 100000 samples of the FisherSnedecor(100, 100) distribution and display histogram
            Console.WriteLine(@"6. Generate 100000 samples of the FisherSnedecor(100, 100) distribution and display histogram");
            FisherSnedecor.Samples(data, 100, 100);
            ConsoleHelper.DisplayHistogram(data);
        }
 public void ValidateMinimum()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     Assert.AreEqual(0.0, n.Minimum);
 }
 public void ValidateMaximum()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     Assert.AreEqual(Double.PositiveInfinity, n.Maximum);
 }
 public void CanSample()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     n.Sample();
 }
 public void ValidateEntropyThrowsNotSupportedException()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     Assert.Throws<NotSupportedException>(() => { var ent = n.Entropy; });
 }
 public void ValidateInverseCumulativeDistribution(double d1, double d2, double x)
 {
     var n = new FisherSnedecor(d1, d2);
     double p = SpecialFunctions.BetaRegularized(d1/2.0, d2/2.0, d1*x/(d2 + (x*d1)));
     Assert.That(n.InverseCumulativeDistribution(p), Is.EqualTo(x).Within(1e-8));
     Assert.That(FisherSnedecor.InvCDF(d1, d2, p), Is.EqualTo(x).Within(1e-8));
 }
 public void ValidateDensityLn(double d1, double d2, double x)
 {
     var n = new FisherSnedecor(d1, d2);
     double expected = Math.Log(Math.Sqrt(Math.Pow(d1*x, d1)*Math.Pow(d2, d2)/Math.Pow((d1*x) + d2, d1 + d2))/(x*SpecialFunctions.Beta(d1/2.0, d2/2.0)));
     Assert.AreEqual(expected, n.DensityLn(x));
     Assert.AreEqual(expected, FisherSnedecor.PDFLn(d1, d2, x));
 }
 public void ValidateCumulativeDistribution(double d1, double d2, double x)
 {
     var n = new FisherSnedecor(d1, d2);
     double expected = SpecialFunctions.BetaRegularized(d1/2.0, d2/2.0, d1*x/(d2 + (x*d1)));
     Assert.That(n.CumulativeDistribution(x), Is.EqualTo(expected));
     Assert.That(FisherSnedecor.CDF(d1, d2, x), Is.EqualTo(expected));
 }
 public void SetDegreesOfFreedom2FailsWithNegativeDegreeOfFreedom()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     Assert.That(() => n.DegreesOfFreedom2 = -1.0, Throws.ArgumentException);
 }
 public void ValidateVariance(double d1, double d2)
 {
     var n = new FisherSnedecor(d1, d2);
     if (d2 > 4)
     {
         Assert.AreEqual((2.0 * d2 * d2 * (d1 + d2 - 2.0)) / (d1 * (d2 - 2.0) * (d2 - 2.0) * (d2 - 4.0)), n.Variance);
     }
 }
 public void ValidateMean(double d1, double d2)
 {
     var n = new FisherSnedecor(d1, d2);
     if (d2 > 2)
     {
         Assert.AreEqual(d2 / (d2 - 2.0), n.Mean);
     }
 }
 public void CanCreateFisherSnedecor(double d1, double d2)
 {
     var n = new FisherSnedecor(d1, d2);
     Assert.AreEqual(d1, n.DegreesOfFreedom1);
     Assert.AreEqual(d2, n.DegreesOfFreedom2);
 }
 public void ValidateMedianThrowsNotSupportedException()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     Assert.Throws<NotSupportedException>(() => { var m = n.Median; });
 }
 public void CanSampleSequence()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     var ied = n.Samples();
     ied.Take(5).ToArray();
 }
예제 #19
0
 public void SetDegreesOfFreedom2FailsWithNegativeDegreeOfFreedom()
 {
     var n = new FisherSnedecor(1.0, 2.0);
     Assert.Throws<ArgumentOutOfRangeException>(() => n.DegreesOfFreedom2 = -1.0);
 }