Learn R Programming

scGate (version 1.7.0)

performance.metrics: Performance metrics

Description

Evaluate model performance for binary tasks

Usage

performance.metrics(actual, pred, return_contingency = FALSE)

Value

Prediction performance metrics (Precision, Recall, MCC) between actual and predicted cell type labels.

Arguments

actual

Logical or numeric binary vector giving the actual cell labels.

pred

Logical or numeric binary vector giving the predicted cell labels.

return_contingency

Logical indicating if contingency table must be returned.

Examples

Run this code
results <- performance.metrics(actual= sample(c(1,0),20,replace=TRUE),
    pred =  sample(c(1,0),20,replace=TRUE,prob = c(0.65,0.35) ) )

Run the code above in your browser using DataLab