- Scilab help
- Graphics
- 2d_plot
- LineSpec
- Matplot
- Matplot1
- Matplot_properties
- Sfgrayplot
- Sgrayplot
- champ
- champ1
- champ_properties
- comet
- contour2d
- contour2di
- contourf
- errbar
- fchamp
- fcontour2d
- fec
- fec_properties
- fgrayplot
- fplot2d
- grayplot
- grayplot_properties
- graypolarplot
- histplot
- paramfplot2d
- plot
- plot2d
- plot2d1
- plot2d2
- plot2d3
- plot2d4
- polarplot
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
ヒストグラムをプロットする
呼び出し手順
histplot(n, data, <opt_args>) histplot(x, data, <opt_args>)
引数
- n
正の整数 (クラスの数)
- x
クラスを定義する増加方向のベクトル (
x
は2個以上の要素を有します)- data
ベクトル (解析するデータ)
- <opt_args>
一連の命令
key1=value1,key2=value2
,... を表します.ただし,key1
,key2,...
は任意のplot2d の オプションのパラメータ (style,strf,leg, rect,nax, logflag,frameflag, axesflag
)またはnormalizationとすることができます. この最後のパラメータの場合,対応する値は論理値スカラー(デフォルト値: %t)とする必要があります.
説明
この関数は,クラス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])
を使用することができます.
デモを参照するには histplot()
コマンドを入力してください.
例
例
- 例 #1: ガウス乱数標本の種々のヒストグラム
- 例 #2: 二項分布 (B(6,0.5)) 乱数標本のヒストグラム
- 例 #3: 指数乱数標本のヒストグラム
Report an issue | ||
<< graypolarplot | 2d_plot | paramfplot2d >> |