statsmodels.discrete.discrete_model.DiscreteResults.set_null_options

DiscreteResults.set_null_options(llnull=None, attach_results=True, **kwds) [source]

set fit options for Null (constant-only) model

This resets the cache for related attributes which is potentially fragile. This only sets the option, the null model is estimated when llnull is accessed, if llnull is not yet in cache.

Parameters:
  • llnull (None or float) – If llnull is not None, then the value will be directly assigned to the cached attribute “llnull”.
  • attach_results (bool) – Sets an internal flag whether the results instance of the null model should be attached. By default without calling this method, thenull model results are not attached and only the loglikelihood value llnull is stored.
  • kwds (keyword arguments) – kwds are directly used as fit keyword arguments for the null model, overriding any provided defaults.
Returns:
Return type:

no returns, modifies attributes of this instance

© 2009–2012 Statsmodels Developers
© 2006–2008 Scipy Developers
© 2006 Jonathan E. Taylor
Licensed under the 3-clause BSD License.
http://www.statsmodels.org/stable/generated/statsmodels.discrete.discrete_model.DiscreteResults.set_null_options.html