Closed rlustermans closed 2 weeks ago
Hi @rlustermans, I admit that the .get_
methods are poorly named - they are only meant for internal use and in consequence, all of them only assign attributes but don't return anything. I should rename them at some point. See here for the get_nobs() method. You can obtain the number of observations by calling fit.nobs()
, coefficients by calling fit.coef()
, a tidy data frame by calling fit.tidy()
etc.
While working with the model object, I noticed that none of the get_ functions are returning any values. For example, model.get_nobs() and model.get_fit(). Is anyone else experiencing this issue, or is it just me?