You are here: Symbol Reference > Dew.Stats Namespace > Statistics Class > Statistics Methods > BinomFit Method > BinomFit Method (TVec, TSample, TVec, TVec, TVec, TSample)
Dew Stats for .NET
Contents
C# Example

The following example generates 100 random Weibull distributed values and then uses WeibullFit routine to extract used a and b parameters: The following example generates 100 binomial distributed values and then uses BinomFit routine to extract p parameter

using Dew.Math;
using Dew.Stats;
using Dew.Stats.Units;
namespace Dew.Examples;
{
  private void Example()
  {
    Vector vec1 = new Vector(1000,false);
    Vector LowInt = new Vector(0);
    Vector HighInt = new Vector(0);
    StatRandom.RandomBinom(35,0.25,vec1);
    // Now extract p-s and its 100*(1-Alpha)
    // confidence intervals.
    double p;
    Statistics.BinomFit(vec1,35,out p,LowInt,HighInt,0.05);
    // vector p holds the p for each element in vec1,
    // vectors LowInt and HighInt hold the lower and upper conf. int. limit
    // for each element in p
  }
}
Copyright (c) 1999-2010 by Dew Research. All rights reserved.