Skip to content

Commit 77cb066

Browse files
authored
Merge pull request statsmodels#8886 from bashtage/fix-doc-notebook-links
DOC: Correct links to notebooks
2 parents 2a3727c + 944ac67 commit 77cb066

File tree

12 files changed

+34
-34
lines changed

12 files changed

+34
-34
lines changed

docs/source/anova.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Examples
3030
3131
A more detailed example for `anova_lm` can be found here:
3232

33-
* `ANOVA <examples/notebooks/generated/interactions_anova.html>`__
33+
* `ANOVA <examples/notebooks/generated/interactions_anova.ipynb>`_
3434

3535
Module Reference
3636
----------------

docs/source/discretemod.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ Examples
3636
Detailed examples can be found here:
3737

3838

39-
* `Overview <examples/notebooks/generated/discrete_choice_overview.html>`__
40-
* `Examples <examples/notebooks/generated/discrete_choice_example.html>`__
39+
* `Overview <examples/notebooks/generated/discrete_choice_overview.ipynb>`_
40+
* `Examples <examples/notebooks/generated/discrete_choice_example.ipynb>`_
4141

4242
Technical Documentation
4343
-----------------------

docs/source/glm.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ Examples
2828
2929
Detailed examples can be found here:
3030

31-
* `GLM <examples/notebooks/generated/glm.html>`__
32-
* `Formula <examples/notebooks/generated/glm_formula.html>`__
31+
* `GLM <examples/notebooks/generated/glm.ipynb>`_
32+
* `Formula <examples/notebooks/generated/glm_formula.ipynb>`_
3333

3434
Technical Documentation
3535
-----------------------

docs/source/large_data.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ A current limitation of this approach is that it generally does not support
2727
design matrix (known as `exog`) in statsmodels, is a little challenging.
2828

2929
A detailed example is available
30-
`here <examples/notebooks/generated/distributed_estimation.html>`_.
30+
`here <examples/notebooks/generated/distributed_estimation.ipynb>`_.
3131

3232
.. autosummary::
3333
:toctree: generated/

docs/source/mixed_linear.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ Examples
9191
9292
Detailed examples can be found here
9393

94-
* `Mixed LM <examples/notebooks/generated/mixed_lm_example.html>`__
94+
* `Mixed LM <examples/notebooks/generated/mixed_lm_example.ipynb>`_
9595

9696
There are some notebook examples on the Wiki:
9797
`Wiki notebooks for MixedLM <https://github.com/statsmodels/statsmodels/wiki/Examples#linear-mixed-models>`_

docs/source/regression.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ Examples
3333
Detailed examples can be found here:
3434

3535

36-
* `OLS <examples/notebooks/generated/ols.html>`__
37-
* `WLS <examples/notebooks/generated/wls.html>`__
38-
* `GLS <examples/notebooks/generated/gls.html>`__
39-
* `Recursive LS <examples/notebooks/generated/recursive_ls.html>`__
40-
* `Rolling LS <examples/notebooks/generated/rolling_ls.html>`__
36+
* `OLS <examples/notebooks/generated/ols.ipynb>`_
37+
* `WLS <examples/notebooks/generated/wls.ipynb>`_
38+
* `GLS <examples/notebooks/generated/gls.ipynb>`_
39+
* `Recursive LS <examples/notebooks/generated/recursive_ls.ipynb>`_
40+
* `Rolling LS <examples/notebooks/generated/rolling_ls.ipynb>`_
4141

4242
Technical Documentation
4343
-----------------------

docs/source/rlm.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Examples
2727
2828
Detailed examples can be found here:
2929

30-
* `Robust Models 1 <examples/notebooks/generated/robust_models_0.html>`__
31-
* `Robust Models 2 <examples/notebooks/generated/robust_models_1.html>`__
30+
* `Robust Models 1 <examples/notebooks/generated/robust_models_0.ipynb>`_
31+
* `Robust Models 2 <examples/notebooks/generated/robust_models_1.ipynb>`_
3232

3333
Technical Documentation
3434
-----------------------

docs/source/statespace.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ arbitrary trend polynomials.
117117
sarimax.SARIMAXResults
118118

119119
For an example of the use of this model, see the
120-
`SARIMAX example notebook <examples/notebooks/generated/statespace_sarimax_stata.html>`__
120+
`SARIMAX example notebook <examples/notebooks/generated/statespace_sarimax_stata.ipynb>`_
121121
or the very brief code snippet below:
122122

123123

@@ -168,7 +168,7 @@ The `UnobservedComponents` class is another example of a statespace model.
168168
structural.UnobservedComponents
169169
structural.UnobservedComponentsResults
170170

171-
For examples of the use of this model, see the `example notebook <examples/notebooks/generated/statespace_structural_harvey_jaeger.html>`__ or a notebook on using the unobserved components model to `decompose a time series into a trend and cycle <examples/notebooks/generated/statespace_cycles.html>`__ or the very brief code snippet below:
171+
For examples of the use of this model, see the `example notebook <examples/notebooks/generated/statespace_structural_harvey_jaeger.ipynb>`_ or a notebook on using the unobserved components model to `decompose a time series into a trend and cycle <examples/notebooks/generated/statespace_cycles.ipynb>`_ or the very brief code snippet below:
172172

173173
.. code-block:: python
174174
@@ -215,7 +215,7 @@ The `VARMAX` class is an example of a multivariate statespace model.
215215
varmax.VARMAX
216216
varmax.VARMAXResults
217217

218-
For an example of the use of this model, see the `VARMAX example notebook <examples/notebooks/generated/statespace_varmax.html>`__ or the very brief code snippet below:
218+
For an example of the use of this model, see the `VARMAX example notebook <examples/notebooks/generated/statespace_varmax.ipynb>`_ or the very brief code snippet below:
219219

220220
.. code-block:: python
221221
@@ -293,7 +293,7 @@ observed variables
293293
dynamic_factor.DynamicFactorResults
294294

295295
For an example of the use of the `DynamicFactor` model, see the
296-
`Dynamic Factor example notebook <examples/notebooks/generated/statespace_dfm_coincident.html>`__
296+
`Dynamic Factor example notebook <examples/notebooks/generated/statespace_dfm_coincident.ipynb>`_
297297

298298
Linear Exponential Smoothing Models
299299
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
@@ -382,7 +382,7 @@ likelihood fitting functionality for estimation and results output.
382382
mlemodel.PredictionResults
383383

384384
For a basic example demonstrating creating and estimating a custom state space
385-
model, see the `Local Linear Trend example notebook <examples/notebooks/generated/statespace_local_linear_trend.html>`__.
385+
model, see the `Local Linear Trend example notebook <examples/notebooks/generated/statespace_local_linear_trend.ipynb>`_.
386386
For a more sophisticated example, see the source code for the `SARIMAX` and
387387
`SARIMAXResults` classes, which are built by extending `MLEModel` and
388388
`MLEResults`.

docs/source/stats.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -465,7 +465,7 @@ Rates
465465
Statistical functions for rates. This currently includes hypothesis tests for
466466
two independent samples.
467467
See also example notebook for an overview
468-
`Poisson Rates <examples/notebooks/generated/stats_poisson.html>`__
468+
`Poisson Rates <examples/notebooks/generated/stats_poisson.ipynb>`_
469469

470470
Status: experimental, API might change, added in 0.12, refactored and enhanced
471471
in 0.14
@@ -738,7 +738,7 @@ Functions for basic meta-analysis of a collection of sample statistics.
738738

739739
Examples can be found in the notebook
740740

741-
* `Meta-Analysis <examples/notebooks/generated/metaanalysis1.html>`__
741+
* `Meta-Analysis <examples/notebooks/generated/metaanalysis1.ipynb>`_
742742

743743
Status: experimental, API might change, added in 0.12
744744

docs/source/treatment.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ statistics, average treatment effect ATE, potential outcome means POM, and
2222
for some methods optionally average treatment effect on the treated ATT.
2323

2424
See also overview notebook in
25-
`Treatment Effect <examples/notebooks/generated/treatment_effect.html>`__
25+
`Treatment Effect <examples/notebooks/generated/treatment_effect.ipynb>`_
2626

2727
.. module:: statsmodels.treatment
2828
.. currentmodule:: statsmodels.treatment

0 commit comments

Comments
 (0)