Session Ready
Exercise

Fitting a logistic model

The university studying the relationship between hours of study and outcomes on a given test has provided you with a data set 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.

Instructions
100 XP
  • Import LogisticRegression from sklearn.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 beta1 and beta0.