Skip to content
Prev 20127 / 20628 Next

HGLM object parameters

?? If this is hglm::hglm(), then Jeff is right.? From the examples:


library(hglm)

data(semiconductor)
m11 <- hglm(fixed = y ~ x1 + x3 + x5 + x6,
 ???????????????? random = ~ 1|Device,
 ???????????????? family = Gamma(link = log),
 ???????????????? disp = ~ x2 + x3, data = semiconductor)

s <- summary(m11)

s$FixCoefMat
 ????????????? Estimate Std. Error??? t-value???? Pr(>|t|)
(Intercept) -4.7116845 0.06695731 -70.368491 3.009494e-53
x1?????????? 0.2097871 0.06638132?? 3.160333 2.627136e-03
x3?????????? 0.3289347 0.06695731?? 4.912604 9.343313e-06
x5????????? -0.1731428 0.06638132? -2.608306 1.185092e-02
x6????????? -0.3569009 0.06633464? -5.380311 1.796667e-06

 ? If this is a different HGLM package you'll have to specify ...
On 2023-03-01 8:58 p.m., Jeff Newmiller wrote: