You are here: Symbol Reference > Dew Namespace > Dew.Stats Namespace > Dew.Stats.Tee Namespace > Classes > BoxPlot Class
Dew Stats for .NET
ContentsIndexHome
PreviousUpNext
BoxPlot Class

Vertical box plot.

Dew_Stats_Tee_BoxPlotDew_Stats_Tee_BoxPlot
Syntax
C#
Visual Basic
public class BoxPlot : CustomBoxPlot;

BoxPlot.cs

Create vertical box plot from data values.

using Dew.Stats.Tee; using Dew.Math; using Dew.Math.Tee; Vector v = new Vector(100); v.RandGauss(); v.SortAscending(); BoxPlot bp; tChart1.Series.Clear(); tChart1.Series.Add(bp = new BoxPlot()); bp.MildOutlier.Width = 3; bp.MildOutlier.Height = 3; MtxVecTee.DrawValues(v,bp,0,1,false);
Copyright (c) 1999-2024 by Dew Research. All rights reserved.
What do you think about this topic? Send feedback!