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");