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

+1-1
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

+10
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

+1-1
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

+1-1
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

+91
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

+1-1
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

docs/source/release/version0.10.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ Thie following Pull Requests were merged since the last release:
663663
* :pr:`5275`: ENH/BUG Modify GEE indexing to remove numpy warnings
664664
* :pr:`5277`: DOC: Clarify/fix docs on GLM scale estimation for negative binomial
665665
* :pr:`5292`: DOC: Remove only_directive
666-
* :pr:`5295`: TST: Added random seed to test_gee and verifed working
666+
* :pr:`5295`: TST: Added random seed to test_gee and verified working
667667
* :pr:`5300`: DOC fix docstring in stattools.py
668668
* :pr:`5301`: BUG: MICEData sets initial imputation incorrectly
669669
* :pr:`5304`: ENH: conditional logistic and Poisson regression

docs/source/release/version0.5.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ New and Improved Graphics
100100
Power and Sample Size Calculations
101101
----------------------------------
102102

103-
The power module (``statsmodel.stats.power``) currently implements power and sample size calculations for the t-tests (:class:`sm.stats.TTestPower <TTestPower>`, :class:`sm.stats.TTestIndPower <TTestIndPower>`), normal based test (:class:`sm.stats.NormIndPower <NormIndPower>`), F-tests (:class:`sm.stats.FTestPower <FTestPower>`, `:class:sm.stats.FTestAnovaPower <FTestAnovaPower>`) and Chisquare goodness of fit (:class:`sm.stats.GofChisquarePower <GofChisquarePower>`) test. The implementation is class based, but the module also provides three shortcut functions, :func:`sm.stats.tt_solve_power <tt_solve_power>`, :func:`sm.stats.tt_ind_solve_power <tt_ind_solve_power>` and :func:`sm.stats.zt_ind_solve_power <zt_ind_solve_power>` to solve for any one of the parameters of the power equations. See this `blog post <http://jpktd.blogspot.fr/2013/03/statistical-power-in-statsmodels.html>`_ for a more in-depth description of the additions.
103+
The power module (``statsmodels.stats.power``) currently implements power and sample size calculations for the t-tests (:class:`sm.stats.TTestPower <TTestPower>`, :class:`sm.stats.TTestIndPower <TTestIndPower>`), normal based test (:class:`sm.stats.NormIndPower <NormIndPower>`), F-tests (:class:`sm.stats.FTestPower <FTestPower>`, `:class:sm.stats.FTestAnovaPower <FTestAnovaPower>`) and Chisquare goodness of fit (:class:`sm.stats.GofChisquarePower <GofChisquarePower>`) test. The implementation is class based, but the module also provides three shortcut functions, :func:`sm.stats.tt_solve_power <tt_solve_power>`, :func:`sm.stats.tt_ind_solve_power <tt_ind_solve_power>` and :func:`sm.stats.zt_ind_solve_power <zt_ind_solve_power>` to solve for any one of the parameters of the power equations. See this `blog post <http://jpktd.blogspot.fr/2013/03/statistical-power-in-statsmodels.html>`_ for a more in-depth description of the additions.
104104

105105

106106
Other important new features
@@ -251,7 +251,7 @@ Pull Requests (172):
251251
* :ghpull:`1009`: MAINT: Add .mailmap file.
252252
* :ghpull:`817`: Add 3 new unit tests for arima_process
253253
* :ghpull:`1001`: BUG include_package_data for install closes #907
254-
* :ghpull:`1005`: GITHUB: Contributing guidlines
254+
* :ghpull:`1005`: GITHUB: Contributing guidelines
255255
* :ghpull:`1007`: Cleanup docs for release
256256
* :ghpull:`1003`: BUG: Workaround for bug in sphinx 1.1.3. See #1002.
257257
* :ghpull:`1004`: DOC: Update maintainer notes with branching instructions.
@@ -277,7 +277,7 @@ Pull Requests (172):
277277
* :ghpull:`949`: BUG fix lowess sort when nans closes #946
278278
* :ghpull:`932`: ENH: support basinhopping solver in LikelihoodModel.fit()
279279
* :ghpull:`927`: DOC: clearer minimal example
280-
* :ghpull:`919`: Ols summary crash
280+
* :ghpull:`919`: OLS summary crash
281281
* :ghpull:`918`: Fixes10 emplike lowess
282282
* :ghpull:`909`: Bugs in GLM pvalues, more tests, pylint
283283
* :ghpull:`906`: ENH: No fmax with Windows SDK so define inline.
@@ -526,7 +526,7 @@ Issues (208):
526526
* :ghissue:`549`: Ship released patsy source in statsmodels
527527
* :ghissue:`588`: patsy is a hard dependency?
528528
* :ghissue:`716`: Tests missing for functions if pandas is used
529-
* :ghissue:`715`: statmodels regression plots not working with pandas datatypes
529+
* :ghissue:`715`: statsmodels regression plots not working with pandas datatypes
530530
* :ghissue:`450`: BUG: full_output in optimizers Likelihood model
531531
* :ghissue:`709`: DOCstrings linear models don't have missing params
532532
* :ghissue:`370`: BUG weightstats has wrong cov
@@ -593,7 +593,7 @@ Issues (208):
593593
* :ghissue:`495`: ENH: add footer SimpleTable
594594
* :ghissue:`402`: model._data -> model.data?
595595
* :ghissue:`477`: VAR NaN Bug
596-
* :ghissue:`421`: Enhancment: Handle Missing Data
596+
* :ghissue:`421`: Enhancement: Handle Missing Data
597597
* :ghissue:`489`: Expose model._data as model.data
598598
* :ghissue:`315`: tsa models assume pandas object indices are dates
599599
* :ghissue:`440`: arima predict is broken for steps > q and q != 1

docs/source/release/version0.6.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ Issues (252):
664664
* :ghissue:`1730`: ENH/Bug cov_params, generalize, avoid ValueError
665665
* :ghissue:`1754`: BUG/REF: assignment to slices in numpy >= 1.9 (emplike)
666666
* :ghissue:`1409`: GEE test errors on Debian Wheezy
667-
* :ghissue:`1521`: ubuntu failues: tsa_plot and grouputils
667+
* :ghissue:`1521`: ubuntu failures: tsa_plot and grouputils
668668
* :ghissue:`1415`: test failure test_arima.test_small_data
669669
* :ghissue:`1213`: df_diff in anova_lm
670670
* :ghissue:`1323`: Contrast Results after t_test summary broken for 1 parameter
@@ -691,7 +691,7 @@ Issues (252):
691691
* :ghissue:`1067`: Kalman Filter convergence. How close is close enough?
692692
* :ghissue:`1281`: Newton convergence failure prints warnings instead of warning
693693
* :ghissue:`1628`: Unable to install statsmodels in the same requirements file as numpy, pandas, etc.
694-
* :ghissue:`617`: Problem in installing statsmodel in Fedora 17 64-bit
694+
* :ghissue:`617`: Problem in installing statsmodels in Fedora 17 64-bit
695695
* :ghissue:`935`: ll_null in likelihoodmodels discrete
696696
* :ghissue:`704`: datasets.sunspot: wrong link in description
697697
* :ghissue:`1222`: NegativeBinomial ignores exposure

0 commit comments

Comments
 (0)