ヒストグラムは、定義されているクラスの間隔(ビン)に対するデータの度数分布をプロットします。これらのビンは、生データ値を重複のない連続した間隔に分割することで作成されます。特定のビンに入る値の数に基づき、連続的な X 軸に沿った長方形の柱として度数がプロットされます。
The following representations can created with the help of a histogram.
The following images show a histogram and a cumulative histogram created using FlexChart.
Histogram | Cumulative Histogram |
---|
ヒストグラムを作成するには、 Histogram 系列を追加し、 ChartType プロパティを Histogram に設定する必要があります。
関連するデータを指定すると、チャートは、データをグループ化する間隔を自動的に計算します。ただし、必要に応じて、 BinWidth プロパティを設定することで、この間隔の幅を指定することもできます。
次のコードスニペットに示すように、FlexChart でデータの度数分布を生成し、ヒストグラムにプロットし、関連するデータを提供します。
A frequency polygon shows a frequency distribution representing the overall pattern in the data. It is a closed two-dimensional figure of straight line segments -created by joining the mid points of the top of the bars of a histogram.
Use the following steps to create a frequency polygon using histogram chart.
Moreover, you can also create a cumulative frequency polygon by setting the CumulativeMode property to true.
The following images show a frequency polygon and a cumulative frequency polygon created using FlexChart.
Frequency Polygon | Cumulative Frequency Polygon |
---|
Use the following code snippet to create a frequency polygon.
Gaussian curve is a bell shaped curve, also known as normal curve, which represents the probability distribution of a continuous random variable. It represents a unimodal distribution as it only has one peak. Moreover, it shows a symmetric distribution as fifty percent of the data set lies on the left side of the mean and fifty percent of the data lies on the right side of the mean.
Use the following steps to create a Gaussian curve using histogram chart.
Following image illustrates a Gaussian curve created using FlexChart, which depicts probability distribution of scores obtained by students of a university in half yearly examinations.
Use the following code snippet to create a Gaussian curve.