vcapwide {hamlet} | R Documentation |
Wide-format data of the Castration-resistant Prostate Cancer experiment using the VCaP cell line.
Description
VCaP cancer cells were injected orthotopically into the prostate of mice and PSA (prostate-specific antigen) was followed. The animals were castrated on two subsequent weeks, after which the castration-resistant tumors were allowed to emerge. Since PSA reached pre-castration levels, the animals were non-bipartite matched and allocated to separate intervention arms (at week 10). 3 different interventions are presented here, with 'Vehicle' as a comparison point and MDV3100 and ARN-509 tested for reducing PSA and its correlated tumor size.
Usage
data(vcapwide)
Format
A data frame with 45 observations on the following 34 variables.
CastrationDate
A numeric vector indicating week when the animal was castrated, resulting in steep decrease in PSA and subsequent castration-resistant tumors to emerge.
CageAtAllocation
A factorial vector indicating cage labels for each animal at the intervention allocation.
Group
A character vector indicating which intervention group the animal was allocated to in the actual experiment (3 alternatives).
TreatmentInitiationWeek
A character vector indicating at which week the intervention was started.
Submatch
A character vector indicating which submatch the individual was part of the original non-bipartite matching task.
ID
A unique character vector indicating the animals.
PSAWeek2
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek3
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek4
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek5
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek6
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek7
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek8
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek9
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek10
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek11
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek12
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek13
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek14
Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
BWWeek0
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek1
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek2
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek3
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek4
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek5
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek6
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek7
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek8
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek9
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek10
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek11
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek12
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek13
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek14
Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
Details
The wide-format here presented the longitudinal measurements for PSA and Body Weight per each column. For modeling the PSA growth longitudinally e.g. using mixed-effects models, see the vcaplong
dataset where the data has been readily transposed into the long-format.
Source
Laajala TD, Jumppanen M, Huhtaniemi R, Fey V, Kaur A, et al. (2016) Optimized design and analysis of preclinical intervention studies in vivo. Sci Rep. 2016 Aug 2;6:30723. doi: 10.1038/srep30723.
Knuuttila M, Yatkin E, Kallio J, Savolainen S, Laajala TD, et al. (2014) Castration induces upregulation of intratumoral androgen biosynthesis and androgen receptor expression in orthotopic VCaP human prostate cancer xenograft model. Am J Pathol. 2014 Aug;184(8):2163-73. doi: 10.1016/j.ajpath.2014.04.010.
See Also
Examples
data(vcapwide)
str(vcapwide)
head(vcapwide)
mixplot(vcapwide[,c("PSAWeek10", "PSAWeek14", "BWWeek10", "Group")], pch=16)
anv <- aov(PSA ~ Group, data.frame(PSA = vcapwide[,"PSAWeek14"], Group = vcapwide[,"Group"]))
summary(anv)
TukeyHSD(anv)
summary(aov(BW ~ Group, data.frame(BW = vcapwide[,"BWWeek14"], Group = vcapwide[,"Group"])))