You are here: Symbol Reference > Dew.Stats Namespace > StatControlCharts Class > StatControlCharts Methods > QCRChart Method
Dew Stats for .NET
Contents
C# Example

The following code will create R chart:

using Dew.Math;
using Dew.Math.Units;
using Dew.Stats.Units;
namespace Dew.Examples
{
  private void Example()
  {
    Matrix Data = new Matrix(0,0);
    Vector DrawVec = new Vector(0);
    double cl,ucl,lcl;
    Data.LoadFromFile("data.mtx");
    StatControlCharts.QCRChart(Data,DrawVec,out cl, out ucl, out lcl, 0.025);
  }
}
Copyright (c) 1999-2010 by Dew Research. All rights reserved.