Description Usage Arguments Details Value Author(s) Examples
Normalizing a target data array to a standard distribution
1 | distrNormalizer(tg, bs)
|
tg |
a target data array |
bs |
a standard distribution created by defineDist(dist) |
The function normalize target data array to a standard distribution.
A normalized target data array with the same distribution with the standard distribution
Qinxue Meng, Paul Kennedy
1 2 3 4 5 6 7 | # Normalize a given data array into a normal distribution
loadData(0)
DBdata1 <- genDistData(DArray1, 500)
DBdata5 <- defineDist(Norm(mean=0, sd=1))
DA1toDA5 <- distrNormalizer(DBdata1, DBdata5)
DA1toDA5DBdata <- genDistData(DA1toDA5, 500)
visDistData(DA1toDA5DBdata, "P", "DA1toDA5", "Range", "Probability")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.