Description Usage Arguments Author(s) Examples
Get a comprimized cut-off for survival analysis among mutiple design object
1 2 3 4 5 6 7 8 | cox.threshold3(expr.matrix=data.fpkm,
design.list,
model,
event.status=status,
event.time=time,
event.lower = event.lower,
interval.n = 1000,
cutoff.pval = 0.05)
|
expr.matrix |
expression object |
design.list |
a list of design object.The names of them must be provided |
model |
model from List.ModelFromOptimized2 |
event.status |
colname of status |
event.time |
colname of time |
event.lower |
lower limit of time |
interval.n |
the cut-off selected parameter.Default is 1000 |
cutoff.pval |
cut-off of p value |
Weibin Huang<654751191@qq.com>
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | ## These are simulative process and NOT RUN
## Quick Start
ct3 <- cox.threshold3(expr.matrix=data.fpkm,
design.list = list(train = design.train,
valid = design.valid),
model = COX2.2$DFS,
event.status=status,
event.time=time,
event.lower = event.lower,
interval.n = 1000,
cutoff.pval = 0.05)
## parameters
model =COX2.2$DFS
expr.matrix=data.fpkm
design.list = list(train = design.train,valid = design.valid)
event.status=status
event.time=time
event.lower = event.lower
interval.n = 1000
cutoff.pval = 0.05
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.