(Choose 1 answer)
Usually the first step to fit a logistic regression model using scikit learn is to:
A. import logistic regression from the sklearn.linear_model module
e.g. from sklearn.linear_model import LogisticRegression
B. import Logistic from the sklearn.regression module
e.g. from sklearn.regression import Logistic
C. import Logistic from the sklearn.linear_regression module
e.g. from sklearn.linear_regression import Logistic
D. import logistic regression from the sklearn.linear classifer module
e.g. from sklearn.linearclassifer import Logistic Regression
Osh
Q: 16