qhat_sl | R Documentation |
Estimate marginal and joint distribution of lists j and k using super learner.
qhat_sl( List.train, List.test, K = 2, j = 1, k = 2, margin = 0.005, sl.lib = c("SL.glm", "SL.gam", "SL.glm.interaction", "SL.ranger", "SL.glmnet"), num_cores = NA, ... )
List.train |
The training data matrix used to estimate the distibution functions. |
List.test |
The data matrix on which the estimator function is applied. |
K |
The number of lists in the data. |
j |
The first list that is conditionally independent. |
k |
The second list that is conditionally independent. |
margin |
The minimum value the estimates can attain to bound them away from zero. |
sl.lib |
The functions from the SuperLearner library to be used for model fitting. See |
num_cores |
The number of cores to be used for paralellization in Super Learner. |
... |
Any extra arguments passed into the function. |
A list of the marginal and joint distribution probabilities q1
, q2
and q12
.
Eric Polley, Erin LeDell, Chris Kennedy and Mark van der Laan (2021). SuperLearner: Super Learner Prediction. R package version 2.0-28. https://CRAN.R-project.org/package=SuperLearner
van der Laan, M. J., Polley, E. C. and Hubbard, A. E. (2008) Super Learner, Statistical Applications of Genetics and Molecular Biology, 6, article 25.
## Not run: qhat = qhat_sl(List.train = List.train, List.test = List.test, margin = 0.005, num_cores = 1) q1 = qhat$q1 q2 = qhat$q2 q12 = qhat$q12 # One can specify the number of cores to be used for parallel computing qhat = qhat_sl(List.train = List.train, List.test = List.test, margin = 0.005, num_cores = 2) q1 = qhat$q1 q2 = qhat$q2 q12 = qhat$q12 ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.