Description Usage Arguments Value Author(s) Examples
Return a model from the cross-validation procedure or the final 'global' model. Caution: This function is still under development.
1 2 3 4 5 6 7 8 9 10 |
x |
metapred object |
select |
Which type of model to select: "cv" (default), "global", or (experimental) "stratified", or "stratum". |
step |
Which step should be selected? Defaults to the best step. numeric is converted to name of the step: 0 for an unchanged model, 1 for the first change... |
model |
Which model change should be selected? NULL (default, best change) or character name of variable or (integer) index of model change. |
stratum |
Experimental. Stratum to return if select = "stratum". |
add |
Logical. Add data, options and functions to the resulting object? Defaults to |
... |
For compatibility only. |
An object of class mp.cv
for select = "cv" and an object of class mp.global
for select = "global".
In both cases, additional data is added to the resulting object, thereby making it suitable for further methods.
Valentijn de Jong
1 2 3 4 5 6 7 | data(DVTipd)
DVTipd$cluster <- letters[1:4] # Add a fictional clustering to the data.
mp <- metapred(DVTipd, strata = "cluster", formula = dvt ~ histdvt + ddimdich, family = binomial)
subset(mp) # best cross-validated model
subset(mp, select = "global") # Final model fitted on all strata.
subset(mp, step = 1) # The best model of step 1
subset(mp, step = 1, model = "histdvt") # The model in which histdvt was removed, in step 1.
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.