-
-
Notifications
You must be signed in to change notification settings - Fork 167
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[r] add support for multiclass cliassification #210
Conversation
} | ||
|
||
calculate_confusion_matrixes <- function(predicted, observed){ | ||
observed <- as.character(observed) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
what would happen is one of these conditions are not satisfied (eg all predictions are TRUE)
would it work or cause errors?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added ifelse statement that checks if one of the values is NaN before assigning it to a list
thanks |
closes #208