Answers for "logistic regression with python example"

1

logistic regression algorithm in python

print("Accuracy:",metrics.accuracy_score(y_test, y_pred))
print("Precision:",metrics.precision_score(y_test, y_pred))
print("Recall:",metrics.recall_score(y_test, y_pred))
Posted by: Guest on May-23-2020
0

logistic regression algorithm in python

# import the metrics class
from sklearn import metrics
cnf_matrix = metrics.confusion_matrix(y_test, y_pred)
cnf_matrix
Posted by: Guest on May-23-2020

Code answers related to "logistic regression with python example"

Python Answers by Framework

Browse Popular Code Answers by Language