parametric.bootstrap | R Documentation |
Parametric bootstrap
parametric.bootstrap(boot.R, x, dx, seed)
boot.R |
numeric. Number of bootstrap samples to generate. |
x |
numeric vector. Actual values for the data. |
dx |
numeric vector of the same length as |
seed |
integer. Seed to use for the random number generation. If it is missing, the seed will not be set to any particular value. If there was a default value, all results would be exactly correlated. So if you want reproducability by fixing the seeds, make sure you choose different seeds for independent variables. |
A matrix with as many columns as there are variables in x
and as many rows
as boot.R
.
Other NLS fit functions:
bootstrap.nlsfit()
,
parametric.bootstrap.cov()
,
parametric.nlsfit.cov()
,
parametric.nlsfit()
,
plot.bootstrapfit()
,
predict.bootstrapfit()
,
print.bootstrapfit()
,
simple.nlsfit()
,
summary.bootstrapfit()
x <- 1:3 dx <- 1:3 * 0.1 parametric.bootstrap(5, x, dx)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.