R/coef.FitFGN.R

`coef.FitFGN` <-
function(object, ...){
BETA<-c(object$H, object$muHat)
sdB<-c(object$SEH,object$SEmu)
Z<-round((BETA-c(0.5,0))/sdB,3)
rn<-c("H", "mu")
cn<-c("MLE","sd","Z-ratio")
ans<-matrix(c(BETA,sdB, Z),ncol=3)
dimnames(ans)<-list(rn, cn)
ans
}

Try the FGN package in your browser

Any scripts or data that you put into this service are public.

FGN documentation built on May 30, 2017, 7:19 a.m.