Description Usage Arguments Value Examples
Convinient wrapper for ICE_cv that performs cross-validation analysis for assessing imputation accuracies for all circRNAs using the training datasets
1 2 3 4 5 6 7 8 | ICE_cv_entire(
train.pcg,
train.circ,
method = "KNN",
cor.method = "spearman",
ncores = 16,
...
)
|
train.pcg |
training protein coding dataset. a numeric matrix with with row names indicating samples, and column names indicating protein coding gene IDs. |
train.circ |
training circRNA expression dataset. a numeric matrix with row names indicating samples, and column names indicating circRNA IDs. |
method |
method for imputation, either "RF" for random forests, "KNN" for K-nearest neighbor or "SVM" for support vector machines. |
cor.method |
a character string indicating which correlation coefficient is to be used for the correlation test. Default is "spearman", could also be "pearson". |
... |
optional parameters that can be passed on to the machine-learning method: RF (randomForest), KNN (knn.reg) or SVM(svm) |
a matrix containing Spearman's correlation coefficient, P-value and RMSE from the cross-validation analysis of the complete circRNA training dataset
1 2 | ICE_cv_entire(train.pcg = GA.pcg, train.circ = GA.mir, method = "KNN")
ICE_cv_entire(train.pcg = GA.pcg, train.circ = GA.mir, method = "SVM")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.