Answers for "logistic regression python use"

6

logistic regression sklearn

#Logistic Regression Model

from sklearn.linear_model import LogisticRegression
LR = LogisticRegression(random_state=0).fit(X, y)
LR.predict(X[:2, :]) #Return the predictions
LR.score(X, y) #Return the mean accuracy on the given test data and labels

#Regression Metrics
#Mean Absolute Error

from sklearn.metrics import mean_absolute_error 
mean_absolute_error(y_true, y_pred)

#Mean Squared Error

from sklearn.metrics import mean_squared_error
mean_squared_error(y_true, p_pred)

#R2 Score

from sklearn.metrics import r2_score
r2_score(y_true, y_pred)
Posted by: Guest on May-07-2021
9

logistic regression algorithm in python

# import the class
from sklearn.linear_model import LogisticRegression

# instantiate the model (using the default parameters)
logreg = LogisticRegression()

# fit the model with data
logreg.fit(X_train,y_train)

#
y_pred=logreg.predict(X_test)
Posted by: Guest on May-23-2020
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

Code answers related to "logistic regression python use"

Python Answers by Framework

Browse Popular Code Answers by Language