You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Not sure if this is missing or just not documented. But it'd be nice to have a way to be able to do Binomial regressions with n not equal to 1, e.g. students_passing ~ teacher_salary with students_passing ~ Binomial(class_size, p_from_regression)
The text was updated successfully, but these errors were encountered:
The wts kwarg can be used to specify the the number of trials associated with a Binomial observation. Note that the response is always on the proportion/probability scale, so it would be prop_students_passing ~ ... with wts=n_students and NOTn_students_passing ~ ....
Not sure if this is missing or just not documented. But it'd be nice to have a way to be able to do Binomial regressions with
n
not equal to 1, e.g.students_passing ~ teacher_salary
withstudents_passing ~ Binomial(class_size, p_from_regression)
The text was updated successfully, but these errors were encountered: