Angri450.Nong.Chart 3.0.4

dotnet add package Angri450.Nong.Chart --version 3.0.4
                    
NuGet\Install-Package Angri450.Nong.Chart -Version 3.0.4
                    
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="Angri450.Nong.Chart" Version="3.0.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Angri450.Nong.Chart" Version="3.0.4" />
                    
Directory.Packages.props
<PackageReference Include="Angri450.Nong.Chart" />
                    
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 Angri450.Nong.Chart --version 3.0.4
                    
#r "nuget: Angri450.Nong.Chart, 3.0.4"
                    
#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 Angri450.Nong.Chart@3.0.4
                    
#: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=Angri450.Nong.Chart&version=3.0.4
                    
Install as a Cake Addin
#tool nuget:?package=Angri450.Nong.Chart&version=3.0.4
                    
Install as a Cake Tool

Angri450.Nong.Chart

Statistical chart generation for academic papers. 18 chart types with built-in ANOVA and Duncan MRT significance testing.

NuGet .NET

Supported Platforms

.NET 8.0 and above (net8.0, net9.0, net10.0, net11.0). Windows, macOS, Linux.

Install

dotnet add package Angri450.Nong.Chart

Quick Start

using ChartCore;

var data = new Dictionary<string, List<double>>
{
    ["Treatment A"] = new() { 95, 88, 92, 78, 85 },
    ["Treatment B"] = new() { 72, 68, 75, 70, 73 },
    ["Treatment C"] = new() { 55, 58, 52, 60, 57 },
};

// Basic bar chart
ChartBuilder.BarChart(data, "Treatment Effects", "Height (cm)", "chart.png");

// With ANOVA + Duncan MRT
var analysis = StatsEngine.FullAnalysis(data);
analysis.Print();
ChartBuilder.BarChartWithSignificance(data, analysis.Duncan.Labels,
    "Effects", "cm", "chart-sig.png");

Chart Types

Bar, pie, donut, line, area, scatter, box plot, histogram, radar, candlestick, bubble, heatmap, gauge, coxcomb, lollipop, population, function plot, error bar.

Statistical Analysis

ANOVA

var result = StatsEngine.OneWayAnova(data);
Console.WriteLine($"F = {result.FValue:F2}, p = {result.PValue:F4}");

Duncan MRT

var duncan = StatsEngine.DuncanMrt(data);
foreach (var g in duncan.Groups)
    Console.WriteLine($"Group {g.Label}: {string.Join(", ", g.Treatments)}");

Full Analysis Pipeline

var full = StatsEngine.FullAnalysis(data);
// Descriptive stats → normality test → ANOVA → Duncan MRT → significance labels
full.Print();           // Console output
full.ToTable();         // Markdown table

Dependencies

  • Angri450.Nong.ThirdParty — merged foundation (ScottPlot + SkiaSharp + all transitive deps)

API Reference

Class Description
ChartBuilder Static methods for all 18 chart types, output to file or stream
StatsEngine ANOVA, Duncan MRT, descriptive statistics, full analysis pipeline
DataLoader Import data from CSV, JSON, dictionary

Source

https://github.com/angri450/Nong.NET — Issues and PRs welcome.

License

MIT

Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.0.4 82 6/1/2026
3.0.3 88 6/1/2026
3.0.2 106 6/1/2026
3.0.1 84 6/1/2026
3.0.0 92 6/1/2026
1.0.4 95 5/31/2026
1.0.3 87 5/30/2026
1.0.2 87 5/30/2026
1.0.0 91 5/25/2026