dropone | R Documentation |
Drop each row or each cluster in a fitted object and collect the resulting linear estimates. Return the drop one estimates along with variable from original data that are invariant within clusters, as well as the maximum value of DFBETAS for each cluster dropped.
dropone(
fit,
form = NULL,
FUN = if (inherits(fit, "lme")) fixef else coef,
data = getData(fit),
...
)
parDropone(
fit,
form = NULL,
FUN = if (inherits(fit, "lme")) fixef else coef,
data = getData(fit),
mc.cores = detectCores(),
...
)
fit |
a fitted object with an |
form |
a formula evaluated in the data frame for 'fit' that defines clusters to be dropped one at a time. If NULL, the default, each row is dropped successively. |
FUN |
function used to extract coefficients. Default:
|
data |
data frame in which to evaluate the refitted object. Default: 'getData(fit)'. |
mc.cores |
number of cores to use. Default: |
parDropone()
: parallel computing version of dropone using the parallel package
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.