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

The following code loads data, stored in binary file and then creates a XBar chart.

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