Programmer Guide/Command Reference/EVAL/hist: Difference between revisions

From STX Wiki
Jump to navigationJump to search
No edit summary
No edit summary
Line 17: Line 17:


[[Programmer_Guide/Command_Reference/EVAL#Functions|<function list>]]
[[Programmer_Guide/Command_Reference/EVAL#Functions|<function list>]]
=====hist=====
The absolute frequency of a vector in arbitrary classes. The result of the following functions is a vector or a scalar (dependent on the number of classes).
Using <var>n</var> classes with the same width, the first class begins at <var>u</var>s and the last class ends at <var>o</var>s.
<code>hist(<var>x</var>, <var>u</var>s, <var>o</var>s, <var>n</var>)</code>
nrow(<var>u</var>v) classes where every pair (<var>u</var>v[i], <var>o</var>v[i]) defines the value range of a class.
<code>hist(<var>x</var>, <var>u</var>v, <var>o</var>v)</code>
nrow(<var>r</var>v)-1 classes where every pair (<var>r</var>v[i], <var>r</var>v[i+1]) defines the value range for summation.
<code>hist(<var>x</var>, <var>r</var>v)</code>
nrow(rm) classes where every pair (rm[i,0], rm[i,1]) defines a value range for summation.
<code>hist(<var>x</var>, <var>r</var>m)</code>

Revision as of 13:37, 8 April 2011

Calculate the absolute frequency of the values of vector x in arbitrary classes. Depending on the number of extents, the result of the function is a vector or a scalar.

Usage
hist(x, us, os, n)
hist(x, uv, ov)
hist(x, rv)
wsum(hist(x, rm)
x
a vector or a matrix
us, os, n
Every pair {'us'+d*i, us+d*(i+1)} (with: d=(os-us)/n, i=0..n-1) defines a class. All three arguments are scalars.
uv, ov
Every pair {uv[i], ov[i]} (with i=0..nrow(uv)-1) defines a class. Both arguments must be vectors with same length.
rv
Every pair {rv[i], rv[i+1]} (with i=0..nrow(rv)-2) defines a class. The argument must be vector.
rm
Every pair {rm[i,0], rm[i,1]} (with i=0..nrow(rm)-1) defines a class. The argument must be matrix with 2 columns.
Result
The result r is a scalar or a vector. Each element ri is the number of elements of x belonging to class i. An element xj,k belongs to a class i if xmini <= xj,k < xmaxi.
See also
sum, wsum

<function list>

Navigation menu

Personal tools