-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsvmtrain.Rd
30 lines (30 loc) · 1.14 KB
/
svmtrain.Rd
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
\name{svmtrain}
\alias{svmtrain}
\docType{data}
\title{
False positive rates from several 1-SVM models
}
\description{
Support Vector Machine density estimation (1-SVM) was applied to a set
of negative control samples, and then used to test on a positive control.
}
\usage{data(svmtrain)}
\format{
A data frame with 378 observations on the following 5 variables.
\describe{
\item{\code{replicate}}{a factor with levels \code{1} \code{2}
\code{3}, the experimental replicate. We fit 1-SVM models to each
replicate separately.}
\item{\code{rate}}{a numeric vector, the percent of observations
that were outside the trained model.}
\item{\code{data}}{a factor with levels \code{KIF11} \code{test}
\code{train}, which set of observations did we measure. test and
train are each 50\% random splits of the negative controls in the
experiment, and KIF11 is the positive control in the experiment.}
\item{\code{gamma}}{a numeric vector, the tuning parameter of the
radial basis function kernel.}
\item{\code{nu}}{a numeric vector, the regularization parameter
of the 1-SVM.}
}
}
\keyword{datasets}