reinstate | R Documentation |
This function creates a numeric vector approximating the raw data from binned data
reinstate(data)
data |
a three-column matrix representing the raw data |
The function reinstate
creates a numeric vector by generating n_i
random data from the Uniform distribution U(a_i, b_i)
for i = 1, \dots, r
and then combine all random data together. a_i, b_i, n_i
are the first, second and the third column of the matrix data
and r
is the number of bins.
It is used for enabling parameter initialization for EM algorithm when we fit mixture
models for binned data.
The function returns a numeric vector.
bin
x <- rnorm(100)
data <- bin(x, seq(-3, 3, 0.25))
y <- reinstate(data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.