F_func_GLM | R Documentation |
Fisher information matrix of generalized linear model (GLM)
F_func_GLM(w, beta, X, link = "logit")
w |
allocation (can be exact or approximate) |
beta |
GLM model covariate coefficient |
X |
model matrix |
link |
link function, default"logit", choose from "logit", "cloglog", "loglog", "probit", and "identity"(for regular linear regression) |
Fisher information matrix given X and model parameter beta
w = c(1/3,1/3, 1/3)
beta = c(0.5, 0.5, 0.5)
X = matrix(data=c(1,-1,-1,1,-1,1,1,1,-1), byrow=TRUE, nrow=3)
Fdet_func_GLM(w=w, beta=beta, X=X, link='logit')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.