Fitting a logistic model
The university studying the relationship between hours of study and outcomes on a given test has provided you with a dataset containing the number of hours the students studied and whether they failed or passed the test, and asked you to fit a model to predict future performance.
The data is provided in the variables hours_of_study and outcomes. Use this data to fit a LogisticRegression model. numpy has been imported as np for your convenience.
This exercise is part of the course
Foundations of Probability in Python
Exercise instructions
- Import
LogisticRegressionfromsklearn.linear_model. - Create the model using
LogisticRegression(C=1e9). - Pass the data to the
model.fit()method. - Create variables for each parameter, assign the values from the model, and print the parameters
beta1andbeta0.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Import LogisticRegression
from sklearn.linear_model import ____
# sklearn logistic model
model = ____(C=1e9)
model.____(____, ____)
# Get parameters
beta1 = model.coef_[0][0]
beta0 = model.intercept_[0]
# Print parameters
print(____, ____)