Last chance! 50% off unlimited learning
Sale ends in
micmen(rpar = 0.001, divisor = 10, init1 = NULL, init2 = NULL,
link1 = "identity", link2 = "identity",
dispersion = 0, zero = NULL)
divisor
should be greater than one.Links
for more choices.NULL
means none."vglmff"
(see vglmff-class
).
The object is used by modelling functions such as vglm
,
and vgam
.The relationship between iteratively reweighted least squares and the Gauss-Newton algorithm is given in Wedderburn (1974). However, the algorithm used by this family function is different. Details are given at the Author's web site.
Wedderburn, R. W. M. (1974) Quasi-likelihood functions, generalized linear models, and the Gauss-Newton method. Biometrika, 61, 439--447.
Bates, D. M. and Watts, D. G. (1988) Nonlinear Regression Analysis and Its Applications, New York: Wiley.
Documentation accompanying the
enzyme
.data(enzyme)
fit = vglm(velocity ~ 1, micmen, enzyme, trace=TRUE, crit="c",
regressor=enzyme$conc)
attach(enzyme)
plot(conc, velocity, xlab="concentration", las=1, main="Enzyme data")
lines(conc, fitted(fit), col="blue") # Join up the fitted values
detach(enzyme)
# Predict the response at other concentrations and add it to the plot
newdata = new=data.frame(concentration=seq(0, 2, len=200))
fit@extra$uvec = newdata$concentration
lines(newdata$conc, predict(fit, new=newdata, type="res"), col="red")
summary(fit)
Run the code above in your browser using DataLab