Keyboard shortcuts

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

母集団箱ひげ図

母集団統計は箱ひげ図を使用して表示できます。

ScottPlot.Plot myPlot = new();

for (int i = 0; i < 5; i++)
{
    double[] values = Generate.RandomNormal(10, mean: 3 + i);
    var pop = myPlot.Add.Population(values, x: i);

    // バー記号の表示を無効にする
    pop.Bar.IsVisible = false;

    // ボックス記号の表示を有効にする
    pop.Box.IsVisible = true;
}

// プロットの外観を調整する
myPlot.HideGrid();

myPlot.SavePng("demo.png", 400, 300);
このレシピは、母集団プロットカテゴリにある多数のレシピの 1 つです