computeThresholdCompartment: Probability threshold for compartment classification

Description Usage Arguments Value Examples

View source: R/probabilityThresholdCompartments.R

Description

Thresholds for each compartment are decided to get confident predictions.

Usage

1
computeThresholdCompartment(test.repA, test.repB)

Arguments

test.repA

data.frame; test predictions, observation and probablity vectors for each protein in replicate A

test.repB

data.frame; test predictions, observation and probablity vectors for each protein in replicate B

Value

threshold.compartment.df

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
{

df <- loadData(SubCellBarCode::hcc827Ctrl)

c.prots <- calculateCoveredProtein(rownames(df), markerProteins[,1])

set.seed(7)
c.prots <- sample(c.prots, 550)
cls <- svmClassification(c.prots, df, markerProteins)

test.A <- cls[[1]]$svm.test.prob.out
test.B <- cls[[2]]$svm.test.prob.out

t.c.df <- computeThresholdCompartment(test.A, test.B)
}

SubCellBarCode documentation built on Nov. 8, 2020, 5:26 p.m.