Build a confusion matrix for the model where the threshold value for the probability of predicted values is 0.6, and also find the accuracy of the model.
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: hard
标签: Data Science
参考答案摘要
Accuracy is calculated as: Accuracy = (True positives + true negatives)/(True positives+ true negatives + false positives + false negatives) To build a confusion matrix in R, we will use the table fun...
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。