| vcapwide | R Documentation |
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.
data(vcapwide)
A data frame with 45 observations on the following 34 variables.
CastrationDateA numeric vector indicating week when the animal was castrated, resulting in steep decrease in PSA and subsequent castration-resistant tumors to emerge.
CageAtAllocationA factorial vector indicating cage labels for each animal at the intervention allocation.
GroupA character vector indicating which intervention group the animal was allocated to in the actual experiment (3 alternatives).
TreatmentInitiationWeekA character vector indicating at which week the intervention was started.
SubmatchA character vector indicating which submatch the individual was part of the original non-bipartite matching task.
IDA unique character vector indicating the animals.
PSAWeek2Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek3Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek4Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek5Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek6Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek7Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek8Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek9Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek10Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek11Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek12Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek13Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
PSAWeek14Numeric vector(s) indicating PSA concentration (ug/l) per each week (2 to 14) of the experiment.
BWWeek0Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek1Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek2Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek3Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek4Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek5Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek6Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek7Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek8Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek9Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek10Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek11Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek12Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek13Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
BWWeek14Numeric vector indicating body weight (g) of the animals per each week (0 to 14) of the experiment.
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.
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.
vcaplong
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"])))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.