-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpredict_svmc.Rd
More file actions
34 lines (31 loc) · 1.21 KB
/
predict_svmc.Rd
File metadata and controls
34 lines (31 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/fit_predict_svmc.R
\name{predict_svmc}
\alias{predict_svmc}
\alias{predict_svm}
\title{prediction based on hidden genome random forest classifier}
\usage{
predict_svmc(fit, Xnew, Ynew = NULL, ...)
predict_svm(fit, Xnew, Ynew = NULL, ...)
}
\arguments{
\item{fit}{fitted hidden genome SVM classifier (output of
\code{fit_svmc()})}
\item{Xnew}{test data design (or meta-design) matrix (observations
across rows and variables predictors/features across columns)
for which predictions are to be made from a fitted model. For a typical hidden
genome classifier this will be a matrix whose rows correspond to the test set
tumors, and columns correspond to (normalized by some functions of
the total mutation burdens in tumors) binary 1-0 presence/absence of
raw variants, counts of mutations at specific genes and counts of mutations
corresponding to specific mutation signatures etc.}
\item{Ynew}{the actual cancer categories for the test samples.
This is not used in computation, but is return as a component in the output,
for possibly easier post-processing.}
}
\description{
prediction based on hidden genome random forest classifier
}
\seealso{
fit_svmc
}