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
<PackageReference Include="Dew.Stats.Tee" Version="6.3.9" />
<PackageVersion Include="Dew.Stats.Tee" Version="6.3.9" />
<PackageReference Include="Dew.Stats.Tee" />
paket add Dew.Stats.Tee --version 6.3.9
#r "nuget: Dew.Stats.Tee, 6.3.9"
#:package Dew.Stats.Tee@6.3.9
#addin nuget:?package=Dew.Stats.Tee&version=6.3.9
#tool nuget:?package=Dew.Stats.Tee&version=6.3.9
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
- Dew Research GitHub Home: https://github.com/Dew-Research
- WinForms/WPF/.NET Framework samples: https://github.com/Dew-Research/DewLabStudio-NETFramework-Samples
- WinForms/.NET Core samples: https://github.com/Dew-Research/DewLabStudio-NETCore-Samples
Documentation
- API Reference: https://www.dewresearch.com/Help/VSNET/StatsMaster/contents.html
- User Guide (PDF): http://downloads.dewresearch.com/downloads/MtxVecV6-CSharp.pdf
- License: https://www.dewresearch.com/downloads/LicenseNET.pdf
- Product Page: https://www.dewresearch.com/products/stats-master
- NuGet Profile: https://www.nuget.org/profiles/DewResearch
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 | Versions 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. |
-
.NETFramework 4.8
- Dew.Math.TeePro (= 6.3.9)
- Dew.Stats (= 6.3.8)
-
net8.0-windows7.0
- Dew.Math.TeePro (= 6.3.9)
- Dew.Stats (= 6.3.8)
-
net9.0-windows7.0
- Dew.Math.TeePro (= 6.3.9)
- Dew.Stats (= 6.3.8)
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.