箱ひげ図クイックスタート
箱ひげ図は個別に作成してプロットに追加できます。
ScottPlot.Plot myPlot = new();
ScottPlot.Box box = new()
{
Position = 5,
BoxMin = 81,
BoxMax = 93,
WhiskerMin = 76,
WhiskerMax = 107,
BoxMiddle = 84,
};
myPlot.Add.Box(box);
myPlot.Axes.SetLimits(0, 10, 70, 110);
myPlot.SavePng("demo.png", 400, 300);
このレシピは、箱ひげ図カテゴリに含まれる多数のレシピの1つです
