In sklearn
in python
there is a C
parameter (regularization parameter) for the LogisticRegression.
Now, I'm wondering what is the equivalent in R
language? When I do logistic regression in R, I do it like this:
glm(<outcome> ~ <covariates>, family="binomial")
But what is it using for the C
parameter? The C
is for regularization, but I can't find any such equivalent in R
?
Here are some places I checked: