| dataglm {ProfileLikelihood} | R Documentation |
Example Data for a Profile Likelihood in Generalized Linear Models
Description
This data is used to illustrate how to obtain values for a profile likelihood of a parameter of interest in a generalized linear model.
Usage
data(dataglm)
Format
A data frame with 100 observations on the following 5 variables.
ida numeric vector; unique identification number
ya numeric vector; binary outcome variable
x1a numeric vector; covariate
x2a numeric vector; covariate
groupa numeric vector; covariate and a parameter of interest
Details
This data is used to illustrate how to obtain values for a profile likelihood of a parameter of interest in a logistic regression model. A parameter of interest is group indicator variable, y is a binary outcome, and x1 and x2 are covariates in a logistic regression model.
Examples
data(dataglm)
xx <- profilelike.glm(y ~ x1 + x2, data=dataglm, profile.theta="group",
family=binomial(link="logit"), length=500, round=2)
profilelike.plot(theta=xx$theta, profile.lik.norm=xx$profile.lik.norm, round=2)
[Package ProfileLikelihood version 1.3 Index]