STAT210prob4.17 | R Documentation |
This data is from an article in Nature Genetics where they studied gene expression as a function of different treatments for leukaemia. The three treatment groups are: mercaptopurine (MP) only; low-dose methotrexate (LDMTX) and MP; and high-dose methotrexate (HDMTX) and MP. Each group contained ten subjects, and the responses from a specific gene are reported.
STAT210prob4.17
A data frame with 30 observations (rows) and 3 variables (columns).
Column name | Data type | Description | Values | |
[,1] | Project | integer | 30 subjects, 10 per treatment group | (1 - 10) |
[,2] | Treatment | factor | 3 different treatments | (MP Only...MP + LDMTX) |
[,3] | Gene_Expression | numeric | Gene expression for one gene | (23.6 - 1024.8) |
The data is from Exercise 4.17 in Design and Analysis of Experiments, 9th Edition, EMEA Edition.
Montgomery, D. C. (2019) Design and Analysis of Experiments, 9th Edition, EMEA Edition. New York: Wiley.
Cheok, M.H., et al. (2003) Treatment-Specific Changes in Gene Expression Discriminate in vivo Drug Response in Human Leukemia Cells. Nature Genetics, 34, 85 – 90.
# The structure of the object
str(STAT210prob4.17)
# Number of subjects per treatment
table(STAT210prob4.17$Treatment)
# Expression of the gene for each treatment group
boxplot(Gene_Expression ~ Treatment, data = STAT210prob4.17,
col = c("steelblue", "paleturquoise2", "khaki2"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.