Description Usage Arguments Value Author(s) References See Also Examples
View source: R/exportedFuncs.R
SWAP.Train.1TSP
trains a binary TSP classifier
with a single top scoring pair. The classifiers resulting
from using this function can be
passed to SWAP.KTSP.Classify
for samples classification.
1 2 3 4 5 | SWAP.Train.1TSP(inputMat, phenoGroup, classes = NULL,
FilterFunc = SWAP.Filter.Wilcoxon, RestrictedPairs = NULL,
handleTies = FALSE, disjoint = TRUE,
score_fn = signedTSPScores, score_opts = NULL,
verbose = FALSE, ...)
|
inputMat |
is a numerical matrix containing the
measurements (e.g., gene expression data)
to be used to build the K-TSP classifier.
The columns represent samples and the
rows represent the features (e.g., genes).
The number of columns must agree
with the length of |
phenoGroup |
is a factor with two levels containing
the phenotype information used to train the K-TSP classifier.
In order to identify the best TSP to be included in the classifier,
the features contained in |
classes |
is a character vector of length 2 providing the phenotype class labels (case followed by control). If NULL, the levels of phenoGroup will be taken as the labels. |
FilterFunc |
is a filtering function to reduce the
starting number of features to be used to identify the
Top Scoring Pairs (TSP). The default filter is differential
expression test based on the Wilcoxon rank-sum test
and alternative filtering functions can be passed too
(see |
RestrictedPairs |
is a character matrix with two columns
containing the feature pairs to be considered for score calculations.
Each row should contain a pair of feature names matching the
rownames of |
handleTies |
is a logical value indicating whether tie handling should be enabled or not. FALSE by default. |
disjoint |
is a logical value indicating whether only disjoint pairs should be considered in the final set of selected pairs; i.e. all features occur only once among the set of TSPs. |
score_fn |
is a function for calculating TSP scores.
By default, the signed TSP scores as calculated by
|
score_opts |
is a list of additional variables that
will be passed on to the scoring function as the |
verbose |
is a logical value indicating whether status messages will be printed or not throughout the function. FALSE by default. |
... |
Additional argument passed to the filtering
function |
The TSP classifier, in the form of a list, which contains the following components:
name |
The classifier name. |
TSPs |
A 1 by 2 matrix, containing
the feature names for the selected TSP. These names
correspond to the |
score |
scores TSP for the top TSP. |
label |
the class labels. These labels correspond to
the |
tieVote |
indicates which class the pair would vote for in case of a tie. |
Bahman Afsari bahman.afsari@gmail.com, Luigi Marchionni marchion@jhu.edu, Wikum Dinalankara wdinala1@jhmi.edu
See switchBox for the references.
SWAP.KTSP.Classify
,
SWAP.Filter.Wilcoxon
,
SWAP.CalculateSignedScore
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | ##################################################
### Load gene expression data for the training set
data(trainingData)
### Show group variable for the TRAINING set
table(trainingGroup)
##################################################
### Train a classifier using default filtering function based on the Wilcoxon test
classifier <- SWAP.Train.1TSP(matTraining, trainingGroup)
### Show the classifier
classifier
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.