R/plotPR.R

Defines functions plotPR

Documented in plotPR

plotPR <-
function(piNet, ...){
  plot(c(0, piNet[, "Recall"]), c(0, piNet[, "Precision"]), type = "l",
       xlab = "recall", ylab = "precision", main = "PR Curve",
       xlim = 0:1, ylim = 0:1, ...)
}

Try the synRNASeqNet package in your browser

Any scripts or data that you put into this service are public.

synRNASeqNet documentation built on May 2, 2019, 6:01 a.m.