statsmodels.othermod.betareg.BetaModel.fit¶
-
BetaModel.fit(start_params=
None
, maxiter=1000
, disp=False
, method='bfgs'
, **kwds)[source]¶ Fit the model by maximum likelihood.
- Parameters:¶
- start_paramsarray_like
A vector of starting values for the regression coefficients. If None, a default is chosen.
- maxiter
integer
The maximum number of iterations
- dispbool
Show convergence stats.
- method
str
The optimization method to use.
- kwds
Keyword arguments for the optimizer.
- Returns:¶
BetaResults
instance.
Last update:
Oct 03, 2024