Description Usage Arguments Details Value Examples
View source: R/DRAP_code_1.5.11.r
Assess differences in tumor volume between arms.
1 2 3 |
data |
a data frame of measured tumor volume data. |
pattern |
the pattern of PDX trial design, "oneAN" or "TAN". |
method |
the method used to analysis. |
DRAnalysis offers both parametic and non-parametic statistic methods to access whether the arms have significant effect on tumor volume. users nedd to choose the proper method based on the feature of data and the suitable conditions.
The statistical analysis results of the choosen method.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ###oneAN pattern
data(oneAN.volume.data)
DRAnalysis(oneAN.volume.data,pattern = 'oneAN',method = 'endpoint.ANOVA')
DRAnalysis(oneAN.volume.data,pattern = 'oneAN',method = 'endpoint.KW')
DRAnalysis(oneAN.volume.data,pattern = 'oneAN',method = 'GR.ANOVA')
DRAnalysis(oneAN.volume.data,pattern = 'oneAN',method = 'mixed.ANOVA')
DRAnalysis(oneAN.volume.data,pattern = 'oneAN',method = 'LMM')
###TAN pattern
data(TAN.volume.data)
DRAnalysis(TAN.volume.data,pattern = 'TAN',method = 'endpoint.ANOVA')
DRAnalysis(TAN.volume.data,pattern = 'TAN',method = 'endpoint.SRH')
DRAnalysis(TAN.volume.data,pattern = 'TAN',method = 'LMM')
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.