Description Usage Arguments Value Examples
Generate the values for performance curve (Precision and Recall for example) to plot on x and y axis
1 2 3 4 5 6 7 | GenerateDataForPerfCurve(
value.predicted,
value.true,
neg.to.pos = FALSE,
x.axis = "sensitivity",
y.axis = "precision"
)
|
value.predicted |
Predicted value / Score (profile similarity / direct interaction) |
value.true |
Actual value (1/0 co-annotation for example) |
neg.to.pos |
assign TRUE to sort from neg to positive (pos -> neg is the default) |
x-axis |
what is the x-axis value you want? (TP, FP, TN, FN, precision, FPR, recall/sensitivity) |
y-axis |
what is the y-axis value you want? (TP, FP, TN, FN, precision, FPR, recall/sensitivity) |
PR -> (x: recall, y: precision), ROC -> (x: recall, y: fpr or 1 - specificity)
1 |
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.