o2cons {MANOVA.RM} | R Documentation |
Oxygen Consumption of Leukocytes
Description
A dataset containing measurements on the oxygen consumption of leukocytes in the presence and absence of inactivated staphylococci.
Usage
data(o2cons)
Format
A data frame with 144 rows and 5 variables:
- O2
oxygen consumption of leukocytes in
\mu
l- Staphylococci
whether or not inactivated staphylococci were added, 1 denotes yes, 0 no
- Time
the measurements were taken after 6, 12 and 18 minutes
- Group
the treatment group, either P for Placebo or V for Verum
- Subject
the subject id
Source
Friedrich, S., Brunner, E. & Pauly, M. (2017). Permuting longitudinal data in spite of the dependencies. Journal of Multivariate Analysis, 153, 255-265.
Examples
if(requireNamespace("ggplot2")){
library(ggplot2)
ggplot(o2cons, aes(x=Group, y=O2)) + geom_point(alpha=0.5) + facet_grid(Staphylococci~Time) +
stat_summary(fun.y = mean, fun.ymin = min, fun.ymax = max, colour = "red")
}
[Package MANOVA.RM version 0.5.4 Index]