Skip to content

Commit

Permalink
Merge pull request #451 from bashtage/change-version-syntax
Browse files Browse the repository at this point in the history
MAINT: Use standard versioning
  • Loading branch information
bashtage committed Feb 8, 2021
2 parents 114ea98 + 4b9c1ae commit ed0d5b7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 2 additions & 2 deletions arch/univariate/mean.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ class HARX(ARCHModel, metaclass=AbstractDocStringInheritor):
>>> y = Series(y, name='y', index=index)
>>> har = HARX(y, lags=[1, 6], hold_back=10)
Models with equivalent parameteriations of lags. Thie first uses
Models with equivalent parametrizations of lags. The first uses
overlapping lags.
>>> harx_1 = HARX(y, lags=[1,5,22])
Expand All @@ -192,7 +192,7 @@ class HARX(ARCHModel, metaclass=AbstractDocStringInheritor):
>>> harx_4 = HARX(y, lags=[[1, 2, 6], [1, 5, 22]])
It is simple to verify that these are theequivalent by inspecting the R2.
It is simple to verify that these are the equivalent by inspecting the R2.
>>> models = [harx_1, harx_2, harx_3, harx_4]
>>> print([mod.fit().rsquared for mod in models])
Expand Down
5 changes: 5 additions & 0 deletions doc/source/spelling_wordlist.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,14 @@ aic
al
andrews
annualize
APARCH
arch
ARCHModel
ARCHModelFixedResult
ARCHModelResult
args
arx
asym
autocorrelation
autocorrelations
autocovariance
Expand Down Expand Up @@ -128,6 +130,7 @@ ouliaris
param
parameterless
params
parametrizations
parzen
ParzenCauchy
ParzenGeometric
Expand All @@ -142,6 +145,7 @@ Probit
Pᵤ
pvalue
pvalues
pyproject
Pz
qs
QuadraticSpectral
Expand Down Expand Up @@ -183,6 +187,7 @@ studentized
studentst
StudentsT
subclassing
toml
th
TukeyHamming
TukeyHanning
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ VCS = git
style = pep440
versionfile_source = arch/_version.py
versionfile_build = arch/_version.py
tag_prefix =
tag_prefix = v
parentdir_prefix = arch-

[tool:pytest]
Expand Down

0 comments on commit ed0d5b7

Please sign in to comment.