Description Usage Arguments Details Value Examples
Allows one to plot results from the resample
function based on
a few different options.
1 2 |
x |
Output from the |
what |
Can be one of three options for all |
... |
Additional arguments. |
For the what
argument, the options correspond with calls to the
following functions:
"network": plotNet
"bootstrap": plotBoot
"coefs":
plotCoefs
"stability": plotStability
"pvals": plotPvals
"bootstrap"
and "pvals"
only available for bootstrapped and
multi-sample split resampling. "stability"
only available for
stability selection.
Plots various aspects of output from the resample
function.
1 2 3 4 5 6 7 8 9 10 11 12 13 | fit1 <- resample(ggmDat, m = 'M', niter = 10)
net(fit1)
netInts(fit1)
plot(fit1)
plot(fit1, what = 'coefs')
plot(fit1, what = 'bootstrap', multi = TRUE)
plot(fit1, what = 'pvals', outcome = 2, predictor = 4)
fit2 <- resample(gvarDat, m = 'M', niter = 10, lags = 1, sampMethod = 'stability')
plot(fit2, what = 'stability', outcome = 3)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.