statsmodels.tools.web.webdoc¶
-
statsmodels.tools.web.
webdoc
(func=None, stable=None)[source]¶ Opens a browser and displays online documentation
- Parameters
Notes
By default, open stable documentation if the current version of statsmodels is a release. Otherwise opens the development documentation.
Uses the default system browser.
Examples
>>> import statsmodels.api as sm
Documentation site
>>> sm.webdoc()
Search for glm in docs
>>> sm.webdoc('glm')
Go to current generated help for OLS
>>> sm.webdoc(sm.OLS, stable=False)