“直方图”的版本间差异
跳到导航
跳到搜索
(以“IDL自带的HISTOGRAM可以运算直方图,然后用plot命令画出来 ::* PSYM=10可画成直方图形式,但是缺少直方图的边框 astro_lib中的pl...”为内容创建页面) |
无编辑摘要 |
||
(未显示2个用户的9个中间版本) | |||
第1行: | 第1行: | ||
IDL自带的HISTOGRAM可以运算直方图,然后用plot命令画出来 |
IDL自带的HISTOGRAM可以运算直方图,然后用plot命令画出来 |
||
::* PSYM=10可画成直方图形式,但是缺少直方图的边框 |
::* [[PSYM]]=10可画成直方图形式,但是缺少直方图的边框 |
||
[[astro_lib]]中的plothist;[[ |
[[astro_lib]]中的plothist;[[Coyote库]]中的cgplothist; |
||
sdssidl中的plothist由于和[[astro_lib]]中的plothist重名,被改为sdssidl_plothist |
sdssidl中的plothist由于和[[astro_lib]]中的plothist重名,被改为sdssidl_plothist |
||
== HISTOGRAM == |
== HISTOGRAM == |
||
Result = HISTOGRAM( Array [, BINSIZE=value] [, INPUT=variable] [, LOCATIONS=variable] [, MAX=value] [, MIN=value] [, /NAN] |
Result = HISTOGRAM( Array [, BINSIZE=value] [, INPUT=variable] [, LOCATIONS=variable] [, MAX=value] [, MIN=value] [, /NAN] |
||
[, NBINS=value] [, OMAX=variable] [, OMIN=variable] [, /L64 | REVERSE_INDICES=variable] ) |
|||
*关键词 locations是bin的位置 = MIN + v*BINSIZE, with v = 0,1,...,NBINS-1. |
|||
*BINSIZE = (MAX – MIN) / (NBINS – 1) |
|||
*要得到i bin里面的元素可用REVERSE_INDICES,具体为A[R[R[I] : R[i+1]-1]],R向量的前面NBINS个元素存这每个bin里面的元素的信息,在NBINS后面的元素则是A数组在各个bins中的index。 |
|||
''' |
|||
== plothist == |
== plothist == |
||
plothist, arr, xhist, yhist, [, BIN=, /FILL, /NOPLOT, /OVERPLOT, PEAK=, |
|||
/AUTOBIN, ...plotting keywords] |
|||
*不能设置min,max等关键词 |
|||
== cghistoplot == |
== cghistoplot == |
||
cgHistoplot, Fix(RandomU(seed, 200)*20), POLYCOLOR=['charcoal', 'steel blue'], /FILLPOLYGON |
|||
*[[Coyote库]]中的直方图程序,可以用mininput,maxinput设置MIN,MAX; |
|||
*locations,histdata关键词可给出Xbin和Yhist的数值 |
|||
*颜色的处理很强大 |
|||
*似乎没有直接画面积归一化的直方图功能 |
|||
== sdssidl_plothist == |
|||
plothist, array, weights=, peak=, norm=, aspect=, /error, nboot=, |
|||
/noplot, /overplot, /fill, fcolor=, /fline, forientation=, fpattern=, fspacing= |
|||
xhist=, yhist=, reverse_indices= ...plotting keywords...histogram keywords] |
|||
*直接支持plotting,histogram keywords的关键词,很强大,比如overplot功能 |
|||
*norm,peak,weights的功能很贴心 |
2013年12月19日 (四) 08:12的最新版本
IDL自带的HISTOGRAM可以运算直方图,然后用plot命令画出来
- PSYM=10可画成直方图形式,但是缺少直方图的边框
astro_lib中的plothist;Coyote库中的cgplothist;
sdssidl中的plothist由于和astro_lib中的plothist重名,被改为sdssidl_plothist
HISTOGRAM
Result = HISTOGRAM( Array [, BINSIZE=value] [, INPUT=variable] [, LOCATIONS=variable] [, MAX=value] [, MIN=value] [, /NAN] [, NBINS=value] [, OMAX=variable] [, OMIN=variable] [, /L64 | REVERSE_INDICES=variable] )
- 关键词 locations是bin的位置 = MIN + v*BINSIZE, with v = 0,1,...,NBINS-1.
- BINSIZE = (MAX – MIN) / (NBINS – 1)
- 要得到i bin里面的元素可用REVERSE_INDICES,具体为A[R[R[I] : R[i+1]-1]],R向量的前面NBINS个元素存这每个bin里面的元素的信息,在NBINS后面的元素则是A数组在各个bins中的index。
plothist
plothist, arr, xhist, yhist, [, BIN=, /FILL, /NOPLOT, /OVERPLOT, PEAK=, /AUTOBIN, ...plotting keywords]
- 不能设置min,max等关键词
cghistoplot
cgHistoplot, Fix(RandomU(seed, 200)*20), POLYCOLOR=['charcoal', 'steel blue'], /FILLPOLYGON
- Coyote库中的直方图程序,可以用mininput,maxinput设置MIN,MAX;
- locations,histdata关键词可给出Xbin和Yhist的数值
- 颜色的处理很强大
- 似乎没有直接画面积归一化的直方图功能
sdssidl_plothist
plothist, array, weights=, peak=, norm=, aspect=, /error, nboot=, /noplot, /overplot, /fill, fcolor=, /fline, forientation=, fpattern=, fspacing= xhist=, yhist=, reverse_indices= ...plotting keywords...histogram keywords]
- 直接支持plotting,histogram keywords的关键词,很强大,比如overplot功能
- norm,peak,weights的功能很贴心