Description Usage Arguments Value Author(s) References See Also Examples
This function constructs survival forest using training sample's follow-up as response and cluster labels as covariate. Constructed forest is used to calculate cumulative hazard function (CHF) for each new sample based its cluster label. CHFs are compared with new samples' actual survival time to calculate the error rate. Error rate ranges from 0 to 1, with 0 representing perfect.
1 |
partition |
Partition (clustering) corresponds to the training set samples. Cluster labels in the partition will be used as covariate to construct SF. |
surv.time |
A numeric vector contains the follow-up information of patients in partition , will be used as response to construct SF. |
status |
A binary vector contains survival status of patients in the partition, normally 0=alive, 1=dead, will be used as response to construct SF. |
te.partition |
Partition to be evaluated |
te.surv.time |
A numeric vector contains the follow-up information of patient's in te.partition |
te.status |
A binary vector contains survival status of patients in te.partition, normally 0=alive, 1=dead. |
... |
Arguments for |
A vector of error rates. Length is equal the number of trees constructed. Default is 1000.
Askar Obulkasim
Ishwaran,H. et al., (2008). "Random survival forest", Ann. App. Statist., 2, 841-860.
Obulkasim,A. et al., (2013). "Semi-supervised adaptive-height snipping of the Hierarchical Clustering tree", submitted.
1 2 3 4 5 6 7 8 | data(BullingerLeukemia)
attach(BullingerLeukemia)
cl <- HCsnipper(em[, 1:30], min = 5)
cl <- cl$partitions[cl$id, ]
pred <- cluster_pred(em[, 1:100], cl[1, ], surv.time[1:30],
status[1:30], 31:100)
Err <- RSF_eval(cl[1, ], surv.time[1:30], status[1:30], pred,
surv.time[31:100], status[31:100])
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.