1 | wwmcpbt(J, K, x, tr = 0.2, alpha = 0.05, nboot = 599)
|
J |
|
K |
|
x |
|
tr |
|
alpha |
|
nboot |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | ##---- Should be DIRECTLY executable !! ----
##-- ==> Define data, use random,
##-- or do help(data=index) for the standard data sets.
## The function is currently defined as
function (J, K, x, tr = 0.2, alpha = 0.05, nboot = 599)
{
conM = con2way(J, K)
A = lindepbt(x, con = conM$conA, alpha = alpha, tr = tr,
nboot = nboot)
B = lindepbt(x, con = conM$conB, alpha = alpha, tr = tr,
nboot = nboot)
AB = lindepbt(x, con = conM$conAB, alpha = alpha, tr = tr,
nboot = nboot)
list(Factor_A = A, Factor_B = B, Factor_AB = AB)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.