1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
| #r "nuget: Microsoft.Data.Analysis, 0.21.1"
#r "nuget: MathNet.Numerics, 5.0.0"
#r "nuget:ScottPlot, 5.0.*"
using System.IO; using Microsoft.Data.Analysis; using MathNet.Numerics.Distributions;
using Microsoft.DotNet.Interactive.Formatting; Formatter.Register(typeof(ScottPlot.Plot), (p, w) => w.Write(((ScottPlot.Plot)p).GetImageHtml(400, 300)), HtmlFormatter.MimeType);
|