ScottPlot.NET
How to plot data using ScottPlot in a F# .NET application

Step 1: Install the ScottPlot NuGet package

Step 2: Plot some data and save the figure as an image file

let dataX = [| 1.0 .. 5.0 |]
let dataY = [| for x in dataX -> x * x |]
let plt = Plot(400, 300);
plt.AddScatter(dataX, dataY);
plt.SaveFig("quickstart.png");