Learn R Programming

HRQoL (version 1.0)

BIiwls:

Description

BIiwls performs estimation of the coefficients of binomial logistic regressions by iterative wieghted least squares method.

Usage

BIiwls(y,X,m,maxiter)

Arguments

y
response dependent variable which follows a binomial distribution.
X
model matrix.
m
number of trials in each binomial observation.
maxiter
maximum number of iterations in the method.

Value

beta
maximum likelihood estimations of the logistic regression coefficients.
vcov
variance-covariance matrix of the estimated regression coefficients.
iter
number of iterations of the algorithm.

Details

The iterative weighted least squares (IWLS) is a general algorithm to find the maximum likelihood estimations (mle) and standard deviations in generalized linear models. There are several ways to derive it, but the one that has been developed in this function is via the Newton-Raphson method. It consists of making a Taylor expansion in the score function, the first derivate of the log-likelihood, around the mle. This especific IWLS, BIiwls, has been developed to find out the mle and the standard errors in logistic regression by the introduction of a dependent variable, a matrix model of the regression covariates and the number of trials of the binomial dependent variable.

References

Pawitan Y. (2001): In All Likelihood: Statistical Modelling and Inference Using Likelihood, Oxford University Press

Examples

Run this code
# We create a variable and a matrix model that consists of
# two covariates.
k=1000                    
m=10 
maxiter=100

y <- rbinom(k,m,0.87) 
x1 <- rnorm(k,1,50)
x2 <- rnorm(k,30,9) 
X <- cbind(1,x1,x2)

BIiwls(y,X,m,maxiter)

Run the code above in your browser using DataLab