Description Usage Arguments Examples
Mutual information with weighted bootstrap
1 2 3 4 5 6 7 8 9 10 11 12 13 |
X |
<object; input> A numeric vector. |
Y |
<object; input> A numeric vector. |
method |
<character; proccessing> a method for estimation of entropy. (see help of infotheo- or minerva-package) |
disc.X |
<character; proccessing> a method for discretization of X. |
disc.Y |
<character; proccessing> a method for discretization of Y. |
alpha |
<numeric; proccessing> alpha parameter for the mine method. (works only when *method* is "mine") |
n.sim |
<numeric; proccessing> The number of simulation. |
group |
<vector; proccessing> Ve |
samp.prob |
<numeric vector; proccessing> probability |
... |
Parameters to be passed to the function *minerva::mine*. |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | eg.res.MICorrBoots <- MICorrBoots(
X = c( 1, 1, 2, 3, 5, 2, 2, 3, 1),
Y = c( 1, 1, 2, 3, 5, 1, 1, 1, 2),
S = c('A','A','A','A','A','B','B','B','B'),
method='shrink',
disc.X='none',
disc.Y='none',
alpha = NULL,
n.sim = 50,
group = c('A','A','A','A','A','B','B','B','B'),
samp.prob =
rep(
1/length( unique( c('A','A','A','A','A','B','B','B','B'))),
length( unique( c('A','A','A','A','A','B','B','B','B')))
)
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.