散布図のデータ型
散布図は、double だけでなく、任意の数値データ型から作成できます。
ScottPlot.Plot myPlot = new();
float[] xs = { 1, 2, 3, 4, 5 };
int[] ys = { 1, 4, 9, 16, 25 };
myPlot.Add.Scatter(xs, ys);
myPlot.SavePng("demo.png", 400, 300);
このレシピは、散布図カテゴリに含まれる多数のレシピの 1 つです
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
散布図は、double だけでなく、任意の数値データ型から作成できます。
ScottPlot.Plot myPlot = new();
float[] xs = { 1, 2, 3, 4, 5 };
int[] ys = { 1, 4, 9, 16, 25 };
myPlot.Add.Scatter(xs, ys);
myPlot.SavePng("demo.png", 400, 300);