| neuralgia | R Documentation |
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.
neuralgia
A data frame with 60 observations and 5 variables:
TreatmentFactor with 3 levels A, B, and P.
The latter is placebo
SexFactor with two levels F and M
AgeNumeric covariate – patient's age in years
DurationNumeric covariate – duration of the condition before beginning treatment
PainBinary response factor with levels No and Yes
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
# 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")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.