predict.se {funfits} | R Documentation |
This function is generic and will call the appropriate function to calculate the standard errors for the object class.
predict.se(object, ...)
object |
A fitted model object of a certain class |
A vector of standard errors for the predicted values.
predict, predict.se.tps, predict.se.krig
tps(ozone$x,ozone$y) -> fit # tps fit predict.se(fit) # std errors of predictions cbind(seq(87,89,,10),seq(40,42,,10)) -> x # new x matrix predict.se(fit,x) -> out # std errors of predictions tps(BD[,1:4],BD$lnya,scale.type="range") -> fit # fitting a DNA strand # displacement amplification surface to various buffer compositions predict.se(fit) -> out # std erros of predictions