computeThresholdNeighborhood: Probability threshold for neighborhood classification

Description Usage Arguments Value Examples

View source: R/probabilityThresholdNeighborhood.R

Description

Thresholds for each neighborhood are decided to get confident predictions.

Usage

1
computeThresholdNeighborhood(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.neighborhood.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, 600)
cls <- svmClassification(c.prots, df, markerProteins)

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

t.n.df <- computeThresholdNeighborhood(test.A, test.B)
}

TanerArslan/SubCellBarCode documentation built on June 7, 2021, 9 a.m.