Skip to content

Commit

Permalink
hotfix: docs example update
Browse files Browse the repository at this point in the history
  • Loading branch information
MuellerSeb committed Oct 16, 2023
1 parent 0b5c73f commit b33c57d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Expand Up @@ -50,7 +50,7 @@ Version 1.6.1

**New features**

* IO routines for zmap files ([#199](https://github.com/GeoStat-Framework/PyKrige/pull/165))
* IO routines for zmap files ([#199](https://github.com/GeoStat-Framework/PyKrige/pull/199))
* `write_asc_grid` got new keyword `no_data` ([#199](https://github.com/GeoStat-Framework/PyKrige/issues/199))

**Changes**
Expand Down
2 changes: 1 addition & 1 deletion docs/source/conf.py
Expand Up @@ -121,7 +121,7 @@
#
# This is also used if you do content translation via gettext catalogs.
# Usually you set "language" from the command line for these cases.
language = None
language = "en"

# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
Expand Down
2 changes: 1 addition & 1 deletion examples/07_regression_kriging2d.py
Expand Up @@ -17,7 +17,7 @@

svr_model = SVR(C=0.1, gamma="auto")
rf_model = RandomForestRegressor(n_estimators=100)
lr_model = LinearRegression(normalize=True, copy_X=True, fit_intercept=False)
lr_model = LinearRegression(copy_X=True, fit_intercept=False)

models = [svr_model, rf_model, lr_model]

Expand Down

0 comments on commit b33c57d

Please sign in to comment.