You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
under the function auc, for the option absolutearea; in addition to true or false, would it be possible to have a third option (eg NULL) of not including negative values in the calculation of area under curve? ie only summing the positive area
The point would be to simplify calculating areas over/under thresholds.
The text was updated successfully, but these errors were encountered:
I'll think about what the best solution would be. In the meantime you can calculate the area of the positive values by computing the average of the full area and the normal AUC:
(MESS::auc(x, y, absolutearea = TRUE) + MESS::auc(x, y))/2
under the function auc, for the option absolutearea; in addition to true or false, would it be possible to have a third option (eg NULL) of not including negative values in the calculation of area under curve? ie only summing the positive area
The point would be to simplify calculating areas over/under thresholds.
The text was updated successfully, but these errors were encountered: