点のみの散布図
ScatterPoints() メソッドを使用すると、マーカーのみの散布図を作成できます(線幅は 0 に設定されます)。
ScottPlot.Plot myPlot = new();
double[] xs = Generate.Consecutive(51);
double[] sin = Generate.Sin(51);
double[] cos = Generate.Cos(51);
myPlot.Add.ScatterPoints(xs, sin);
myPlot.Add.ScatterPoints(xs, cos);
myPlot.SavePng("demo.png", 400, 300);
このレシピは、散布図カテゴリにある多数のレシピの 1 つです
