Dew.Stats.Tee 6.3.9

dotnet add package Dew.Stats.Tee --version 6.3.9
                    
NuGet\Install-Package Dew.Stats.Tee -Version 6.3.9
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Dew.Stats.Tee" Version="6.3.9" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Dew.Stats.Tee" Version="6.3.9" />
                    
Directory.Packages.props
<PackageReference Include="Dew.Stats.Tee" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Dew.Stats.Tee --version 6.3.9
                    
#r "nuget: Dew.Stats.Tee, 6.3.9"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Dew.Stats.Tee@6.3.9
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Dew.Stats.Tee&version=6.3.9
                    
Install as a Cake Addin
#tool nuget:?package=Dew.Stats.Tee&version=6.3.9
                    
Install as a Cake Tool

Dew.Stats.Tee

Charting extensions for Dew.Stats and Dew.Math using Steema TeeChart Pro

This package provides advanced statistical visualizations built on top of Dew.Math and Dew.Stats, using Steema TeeChart Pro for rendering.

Features

  • Probability plots (Normal, Weibull, QQ)
  • Variable control charts (X̄, R, S, EWMA)
  • Attribute control charts (P, NP, U, C)
  • Dot plot, box plot, biplot, error ellipses
  • Histogram, scatter, Pareto, error bars, 3D scatter and other TeeChart series

Requirement: TeeChart Pro is a separate commercial product from Steema Software. A valid Dew.Math license is also required.

Compatibility

  • .NET Framework 4.8 and newer
  • .NET 8.0 and newer (Windows)
  • Supports 64‑bit native execution
  • Fully written in C#

From v6.3.5 onward, this package is distributed separately from Dew.Stats.


Examples


Documentation


Quick Start (X̄ Chart Example)

using Dew.Math;
using Dew.Stats.Units;   // StatControlCharts
using Dew.Stats.Tee;     // QCSeries
using Steema.TeeChart;
using System.Windows.Forms;

public partial class Form1 : Form
{
    private readonly TChart chart = new TChart { Dock = DockStyle.Fill };
    private readonly QCSeries qcSeries = new QCSeries();

    public Form1()
    {
        InitializeComponent();
        chart.Series.Add(qcSeries);
        Controls.Add(chart);
        Load += OnLoad;
    }

    private void OnLoad(object? sender, EventArgs e)
    {
        Matrix data = new Matrix();
        data.LoadFromFile("qc_data.mtx");

        Vector drawVec = new Vector();
        double cl, ucl, lcl;

        StatControlCharts.QCXChart(data, drawVec, out cl, out ucl, out lcl, 0.025);

        qcSeries.CL = cl;
        qcSeries.UCL = ucl;
        qcSeries.LCL = lcl;

        MtxVecTee.DrawValues(drawVec, qcSeries, 0, 1, false);
    }
}

Designer Notes

On .NET 8/9, ensure that both Dew assemblies and TeeChart Pro assemblies are visible to the WinForms designer.


License

Commercial license. See DewStatsLicense.txt included in this package. All Dew.* NuGet packages on nuget.org are trial versions and work from inside Visual Studio IDE only.

Product Compatible and additional computed target framework versions.
.NET net8.0-windows7.0 is compatible.  net9.0-windows was computed.  net9.0-windows7.0 is compatible.  net10.0-windows was computed. 
.NET Framework net48 is compatible.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (1)

Showing the top 1 NuGet packages that depend on Dew.Stats.Tee:

Package Downloads
Dew.Lab.Studio

Dew Lab Studio bundles the Dew.Math, Dew.Signal, and Dew.Stats libraries into a unified package suitable for scientific, engineering, financial, and real-time signal-processing applications. It includes full numerical computation, vectorized signal analysis and filtering, statistical modeling, probability distributions, spectral transforms, optimization, and advanced data workflows. This package also integrates visualization via Dew.Math.TeePro, Dew.Signal.Tee, and Dew.Stats.Tee, which extend TeeChart for high-performance plotting of large datasets, spectrograms, signal traces, matrices, probability distributions, and live streaming data. No hard WinForms linking is introduced into your own code; the visualization libraries depend on WinForms internally while allowing you to use WinForms, WPF, Avalonia, or custom UI frameworks. Included Components: - Dew.Math (Windows native-accelerated numerical computation) - Dew.Signal (real-time DSP, filtering, transforms, spectral and streaming signal analysis) - Dew.Stats (probability distributions, statistical modeling, hypothesis testing, inference) - Dew.Math.TeePro (high-speed charting extensions for numerical data) - Dew.Signal.Tee (spectral / time-frequency / oscilloscope plotting extensions) - Dew.Stats.Tee (statistical visualization and histogramming helpers) Usage Model: - Use Dew Lab Studio for Windows desktop and server applications requiring interactive visualization, scientific and engineering debugging workflows, data interpretation, or real-time signal monitoring. - For Linux HPC systems: use Dew.Lab.Studio.Linux (accelerated native Linux builds). - For maximum cross-platform portability: use Dew.Lab.Studio.Core (managed-only .Core builds). Platform Notes: - Dew.*.Tee packages depend on WinForms internally. Therefore, projects targeting net8.0-windows or net9.0-windows must enable the Windows Desktop framework (WinForms).

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
6.3.9 390 11/19/2025
6.3.8 229 11/16/2025