From 546efcf0c59a736b30922dcb9aae0de6c4813a74 Mon Sep 17 00:00:00 2001 From: "Marcelo R. Albuquerque" Date: Wed, 14 Apr 2021 10:04:37 -0300 Subject: [PATCH] Fix typos on README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 766617a..de33ac5 100644 --- a/README.md +++ b/README.md @@ -92,8 +92,8 @@ example for a more practical illustration. can be performed with [pykrige.rk.RegressionKriging](http://pykrige.readthedocs.io/en/latest/examples/07_regression_kriging2d.html). This class takes as parameters a scikit-learn regression model, and -details of either either the `OrdinaryKriging` or the `UniversalKriging` -class, and performs a correction steps on the ML regression prediction. +details of either the `OrdinaryKriging` or the `UniversalKriging` +class, and performs a correction step on the ML regression prediction. A demonstration of the regression kriging is provided in the [corresponding @@ -104,10 +104,10 @@ example](http://pykrige.readthedocs.io/en/latest/examples/07_regression_kriging2 [Simplifical Indicator kriging](https://www.sciencedirect.com/science/article/abs/pii/S1002070508600254) can be performed with -[pykrige.rk.ClassificationKriging](http://pykrige.readthedocs.io/en/latest/examples/10_classification_kriging2d.html). +[pykrige.ck.ClassificationKriging](http://pykrige.readthedocs.io/en/latest/examples/10_classification_kriging2d.html). This class takes as parameters a scikit-learn classification model, and details of either the `OrdinaryKriging` or the `UniversalKriging` class, -and performs a correction steps on the ML classification prediction. +and performs a correction step on the ML classification prediction. A demonstration of the classification kriging is provided in the [corresponding