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
It would be nice to have a flag to compute proportions out of total instead of counts.
conf_mat object is not a matrix, so I can't do something like conf_mat(data, truth, pred) / nrow(data), but I can do it by passing it to tidy.
Is there a simple function to turn conf_mat object into plain matrix or tibble, keeping the 2x2 layout?
The text was updated successfully, but these errors were encountered:
It would be nice to have a flag to compute proportions out of total instead of counts.
conf_mat
object is not a matrix, so I can't do something likeconf_mat(data, truth, pred) / nrow(data)
, but I can do it by passing it totidy
.Is there a simple function to turn
conf_mat
object into plain matrix or tibble, keeping the 2x2 layout?The text was updated successfully, but these errors were encountered: