R/summary.haplo.glm.R

Defines functions `summary.haplo.glm`

`summary.haplo.glm` <-
function(object, ...)
 {
   o <- object
   coe <- o$coe
   se <- sqrt(diag(o$var.mat)[1:length(coe)])
   z <- coe/se
   p <- 2-2*pnorm(abs(z))
   list( coeficients = cbind(coe,se,z,p) )
 }

Try the SNPassoc package in your browser

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

SNPassoc documentation built on Dec. 28, 2022, 1:59 a.m.