| neuralgia {emmeans} | R Documentation |
Neuralgia data
Description
These data arise from a study of analgesic effects of treatments of elderly patients who have neuralgia. Two treatments and a placebo are compared. The response variable is whether the patient reported pain or not. Researchers recorded the age and gender of 60 patients along with the duration of complaint before the treatment began.
Usage
neuralgia
Format
A data frame with 60 observations and 5 variables:
TreatmentFactor with 3 levels
A,B, andP. The latter is placeboSexFactor with two levels
FandMAgeNumeric covariate – patient's age in years
DurationNumeric covariate – duration of the condition before beginning treatment
PainBinary response factor with levels
NoandYes
Source
Cai, Weijie (2014) Making Comparisons Fair: How LS-Means Unify the Analysis of Linear Models, SAS Institute, Inc. Technical paper 142-2014, page 12, http://support.sas.com/resources/papers/proceedings14/SAS060-2014.pdf
Examples
# Model and analysis shown in the SAS report:
neuralgia.glm <- glm(Pain ~ Treatment * Sex + Age, family = binomial(),
data = neuralgia)
pairs(emmeans(neuralgia.glm, ~ Treatment, at = list(Sex = "F")),
reverse = TRUE, type = "response", adjust = "bonferroni")