python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
How to make ROC Curves with survey objects
I'm trying to build a ROC curve with data from a survey object from surveyr. But the pROC function cannot coerce a survey object back to a data frame for the analyses and it doen't work with the surve...
João Camargos
Votes: 0
Answers: 1
How number of thresholds is defined in sklearn roc_curve function?
When I used sklearn function roc_curve on my data with logistic regression model:
roc_curve(y_test, predictions_test)
I got this result:
(array([0. , 0.1, 1. ]), array([0. , 0.865, 1. ]), array([...
Ir8_mind
Votes: 0
Answers: 1