散布図の座標
散布図は、Coordinates のコレクションから作成できます。
ScottPlot.Plot myPlot = new();
Coordinates[] coordinates =
{
new(1, 1),
new(2, 4),
new(3, 9),
new(4, 16),
new(5, 25),
};
myPlot.Add.Scatter(coordinates);
myPlot.SavePng("demo.png", 400, 300);
このレシピは、散布図カテゴリにある多数のレシピの 1 つです
