Skip to content

Commit ec4aa25

Browse files
authored
Merge pull request statsmodels#5990 from bashtage/spelling
MAINT/DOC: Add spell checking
2 parents f26ade8 + 892239c commit ec4aa25

File tree

100 files changed

+2420
-191
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+2420
-191
lines changed

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ Main Features
104104

105105
* Miscellaneous models
106106
* Sandbox: statsmodels contains a sandbox folder with code in various stages of
107-
developement and testing which is not considered "production ready". This covers
107+
development and testing which is not considered "production ready". This covers
108108
among others
109109

110110
- Generalized method of moments (GMM) estimators

docs/source/conf.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@
5454
'numpydoc'
5555
]
5656

57+
try:
58+
import sphinxcontrib.spelling # noqa: F401
59+
except ImportError as err: # noqa: F841
60+
pass
61+
else:
62+
extensions.append('sphinxcontrib.spelling')
63+
64+
spelling_word_list_filename = ['spelling_wordlist.txt', 'names_wordlist.txt']
65+
spelling_ignore_pypi_package_names = True
66+
5767
# Add any paths that contain templates here, relative to this directory.
5868
templates_path = ['_templates']
5969

docs/source/datasets/dataset_proposal.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
.. _dataset_proposal:
44

5-
Dataset for statmodels: design proposal
5+
Dataset for statsmodels: design proposal
66
===============================================
77

88
One of the thing numpy/scipy is missing now is a set of datasets, available for

docs/source/dev/test_notes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ using a development install of statsmodels::
1212
python setup.py develop
1313

1414
This will compile the C code and add statsmodels to your activate python
15-
environment by creating links from your python environemnt's libraries
15+
environment by creating links from your python environment's libraries
1616
to the statsmodels source code. Therefore, changes to pure python code will
1717
be immediately available to the user without a re-install.
1818

docs/source/names_wordlist.txt

Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
Josef
2+
Helmert
3+
Akaike
4+
Anscombe
5+
Armitage
6+
Athanasopoulos
7+
Augspurger
8+
Azzalini
9+
Bai
10+
Benjamini
11+
Bera
12+
Berndt
13+
Breslow
14+
Breusch
15+
Brockwell
16+
Bronwyn
17+
Broyden
18+
Charlier
19+
Denton
20+
Doornik
21+
Driscoll
22+
Durbin
23+
Econometrica
24+
Efron
25+
El
26+
Engle
27+
Fleiss
28+
Goldfarb
29+
Goldfeld
30+
Gommers
31+
Granger
32+
Hampel
33+
Hannan
34+
Hastie
35+
Hauck
36+
Hausman
37+
Helmert
38+
Helmut
39+
Hobson
40+
Hochberg
41+
Hodrick
42+
Kaplan
43+
Hurvich
44+
Hyndman
45+
Jarque
46+
Johansen
47+
Jurgen
48+
Kerby
49+
Kolmogorov
50+
Koopman
51+
Kraay
52+
Kwiatkowski
53+
Levinson
54+
Liang
55+
Liu
56+
Ljung
57+
Lütkepohl
58+
Nelder
59+
Newey
60+
Nino
61+
Penrose
62+
Perktold
63+
Ploberger
64+
Quackenbush
65+
Raphson
66+
Ridout
67+
Satterthwait
68+
Schwarz
69+
Schwert
70+
Seabold
71+
Shephard
72+
Shanno
73+
Shedden
74+
Sidak
75+
Siem
76+
Silverman
77+
Smirnov
78+
Springer
79+
Stata
80+
Tibshirani
81+
Tukey
82+
Yichuan
83+
Zeger
84+
Zha
85+
Reuille
86+
Kotz
87+
Grunfeld
88+
Longley
89+
Koenker
90+
gliptak
91+
Spector

docs/source/plots/graphics_regression_abline.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
'''
3-
Using the state crime dataset seperately plot the effect of the each
3+
Using the state crime dataset separately plot the effect of the each
44
variable on the on the outcome, murder rate while accounting for the effect
55
of all other variables in the model.
66

docs/source/plots/graphics_regression_ccpr_grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
'''
3-
Using the state crime dataset seperately plot the effect of the each
3+
Using the state crime dataset separately plot the effect of the each
44
variable on the on the outcome, murder rate while accounting for the effect
55
of all other variables in the model.
66

docs/source/plots/graphics_regression_partregress_grid.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# -*- coding: utf-8 -*-
22
'''
3-
Using the state crime dataset seperately plot the effect of the each
3+
Using the state crime dataset separately plot the effect of the each
44
variable on the on the outcome, murder rate while accounting for the effect
55
of all other variables in the model visualized with a grid of partial
66
regression plots.

docs/source/release/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ What's new in Statsmodels
2323
version0.6
2424
version0.5
2525

26-
For an overview of changes that occured previous to the 0.5.0 release see :ref:`old_changes`.
26+
For an overview of changes that occurred previous to the 0.5.0 release see :ref:`old_changes`.

docs/source/release/old_changes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ the import speed if a library or user only needs specific functions.
170170
* Time Series Analysis model (tsa)
171171

172172
- Vector Autoregression Models VAR (tsa.VAR)
173-
- Autogressive Models AR (tsa.AR)
173+
- Autoregressive Models AR (tsa.AR)
174174
- Autoregressive Moving Average Models ARMA (tsa.ARMA)
175175
optionally uses Cython for Kalman Filtering
176176
use setup.py install with option --with-cython

0 commit comments

Comments
 (0)