- Scilabヘルプ
- Graphics
- 2d_plot
- champ
- champ1
- champ_properties
- comet
- contour2d
- contour2di
- contour2dm
- contourf
- errbar
- fchamp
- fec
- fec_properties
- fgrayplot
- fplot2d
- grayplot
- grayplot_properties
- graypolarplot
- histplot
- LineSpec
- Matplot
- Matplot1
- Matplot_properties
- paramfplot2d
- plot
- plot2d
- plot2d2
- plot2d3
- plot2d4
- polarplot
- scatter
- Sfgrayplot
- Sgrayplot
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
histplot
ヒストグラムをプロットする
呼び出し手順
[cf, ind] = histplot(n, data [,normalization] [,polygon], <opt_args>) [cf, ind] = histplot(x, data [,normalization] [,polygon], <opt_args>)
引数
- n
正の整数 (クラスの数)
- x
クラスを定義する増加方向のベクトル (
x
は2個以上の要素を有します)- data
ベクトル (解析するデータ)
- normalization
論理値 (%t (デフォルト値) または %f)
- polygon
論理値 (%t または %f (デフォルト値))
- <opt_args>
一連の命令
key1=value1,key2=value2
,... を表します.ただし,key1
,key2,...
は任意のplot2d の オプションのパラメータ (style,strf,leg, rect,nax, logflag,frameflag, axesflag
) とすることができます.- cf
これは一連の命令
key1=value1,key2=value2
,...を表します. ただし,key1
,key2,...
は, plot2dの任意のオプションパラメータ (style,strf,leg, rect,nax, logflag,frameflag, axesflag
) とすることができます.- ind
これは一連の命令
key1=value1,key2=value2
,...を表します. ただし,key1
,key2,...
は, plot2dの任意のオプションパラメータ (style,strf,leg, rect,nax, logflag,frameflag, axesflag
) とすることができます.
説明
この関数は,クラスx
を用いてdata
ベクトル
のヒストグラム(柱状グラフ)をプロットします.
x
のかわりにクラスの数n
が指令された場合,
クラスは等間隔でdx = (x(n+1)-x(1))/nとして
x(1) = min(data) < x(2) = x(1) + dx < ... < x(n+1) = max(data)
となるように選択されます.
クラスはC1 = [x(1), x(2)]およびi >= 2の時にCi = ( x(i), x(i+1)]
により定義されます.
data
の総数 Nmax (Nmax = length(data))となり,
Ciに含まれるdata
要素の数 Niは
normalization
が true (デフォルト)の場合には
Ni/(Nmax (x(i+1)-x(i)))となります.
そうでない場合, Ni となります.
正規化が行われる場合,このヒストグラムは以下の制約を満たします:
任意の plot2d (オプション) パラメータを指定できます;
例えば,色番号2 (標準カラーマップを使用する場合には青)のヒストグラムをプロットする場合や,
矩形 [-3,3]x[0,0.5] の内側へのプロットを制限する場合,
histplot(n,data, style=2, rect=[-3,0,3,0.5])
を使用することができます.
周波数ポリゴンは,ヒストグラムの全てのビンの頂部の中点をつなぐことにより描画されるグラフn
線です.
このため, ポリゴン周波数チャートをプロットするために
histplot
を使用できます.
オプションの引数 polygon
は,直線を有するヒストグラムの
各バーの頂部の中点を接続します.
polygon=%t
の場合,
周波数ポリゴンチャート付きのヒストグラムが出力されます.
デモを参照するには histplot()
コマンドを入力してください.
例
- 例 #1: ガウス乱数標本の種々のヒストグラム
- 例 #2: 二項分布 (B(6,0.5)) 乱数標本のヒストグラム
- 例 #3: 指数乱数標本のヒストグラム
- 例 #4: 周波数ポリゴンチャートおよびガウス乱数標本のヒストグラム
参照
Report an issue | ||
<< graypolarplot | 2d_plot | LineSpec >> |