Learn R Programming

nlstools (version 2.1-0)

nlsJack: Jackknife resampling

Description

Jackknife resampling

Usage

nlsJack (nls)
  # S3 method for nlsJack
plot (x, mfr = c(nrow(x$reldif),1), ask = FALSE, ...)
  # S3 method for nlsJack
print (x, ...)
  # S3 method for nlsJack
summary (object, ...)

Value

nlsJack returns a list with 7 objects:

estijack

a data frame with jackknife estimates and bias

coefjack

a data frame with the parameter estimates for each jackknife sample

reldif

a data frame with the absolute relative difference (in percent of the estimate) of the estimates with and without each observation

dfb

a data frame with dfbetas for each parameter and each observation

jackCI

a data frame with jackknife confidence intervals

rse

a vector with residual standard error for each jackknife sample

rss

residual a vector with residual sum of squares for each jackknife sample

Arguments

nls

an object of class 'nls'

x, object

an object of class 'nlsJack'

mfr

layout definition, default is k rows (k: number of parameters) and 1 column

ask

if TRUE, draw plot interactively

...

further arguments passed to or from other methods

Author

Florent Baty, Marie-Laure Delignette-Muller

Details

A jackknife resampling procedure is performed. Each observation is sequentially removed from the initial data set using a leave-one-out strategy. A data set with n observations provides thus n resampled data sets of n-1 observations. The jackknife estimates with confidence intervals are calculated as described by Seber and Wild (1989) from the results of n new fits of the model on the n jackknife resampled data sets. The leave-one-out procedure is also employed to assess the influence of each observation on each parameter estimate. An observation is empirically defined as influential for one parameter if the difference between the estimate of this parameter with and without the observation exceeds twice the standard error of the estimate divided by sqrt(n). This empirical method assumes a small curvature of the nonlinear model. For each parameter, the absolute relative difference (in percent of the estimate) of the estimates with and without each observation is plotted. An asterisk is plotted for each influential observation.

References

Seber GAF, Wild CJ (1989) Nonlinear regression. Wiley, New York.

Examples

Run this code
formulaExp <- as.formula(VO2 ~ (t <= 5.883) * VO2rest + (t > 5.883) * 
                        (VO2rest + (VO2peak - VO2rest) * 
                        (1 - exp(-(t - 5.883) / mu))))
O2K.nls1 <- nls(formulaExp, start = list(VO2rest = 400, VO2peak = 1600, mu = 1), 
               data = O2K)
O2K.jack1 <- nlsJack(O2K.nls1)
plot(O2K.jack1)
summary(O2K.jack1)

Run the code above in your browser using DataLab