Displaying 1 result from an estimated 1 matches for "ndfit".
2012 Apr 16
1
Crear nuevos métodos para funciones genéricas existentes
...odemos llamar ND. La sintaxis de esta
función sería, de forma resumida:
ND.fit<-function(x, start, ...){
...
structure(list(estimate = res$par, sd = sds, vcov = vc, loglik =
-res$value,
method = method, convergence = res$convergence, n = n, obs = x,
obsName = xName), class = "NDfit")
}
Ahora quiero crear nuevos métodos asociados a la clase NDfit para las
funciones genéricas habituales. Por ejemplo:
coef.ND<-function (x, ...)
{
if (!class(x) == "NDfit") {
stop("Object must belong to class ND")
}
print.default(x$estimate, p...