diff --git a/datafit/CHANGELOG.md b/datafit/CHANGELOG.md index 2c976f21..58764ff9 100644 --- a/datafit/CHANGELOG.md +++ b/datafit/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 1.3.1 + +- Fix broken link in readme + ## 1.3.0 - `maxDeviation` is now a normalized input diff --git a/datafit/README.md b/datafit/README.md index 2829f9e3..1fff575f 100644 --- a/datafit/README.md +++ b/datafit/README.md @@ -1,6 +1,6 @@ ## Getting Started -`datafit` exports only 1 function, [`fit()`](https://npm.nicfv.com/datafit/functions/fit-1.html) which is used for curve fitting. All other exports are purely for information and defining types used within this package. `fit()` uses a genetic-style algorithm to fit a curve to. How it works is that it generates many sets of parameters to test, and keeps ones with smaller error than the previous iteration. Parameter sets with larger errors are discarded. Each subsequent iteration uses the sets of parameters with the least error and "mutates" them randomly. +`datafit` exports only 1 function, [`fit()`](https://npm.nicfv.com/datafit/functions/fit.html) which is used for curve fitting. All other exports are purely for information and defining types used within this package. `fit()` uses a genetic-style algorithm to fit a curve to. How it works is that it generates many sets of parameters to test, and keeps ones with smaller error than the previous iteration. Parameter sets with larger errors are discarded. Each subsequent iteration uses the sets of parameters with the least error and "mutates" them randomly. > Because of these random mutations, running the same code multiple times may yield slightly different results. See [best practices](#best-practices) for mitigation tactics. diff --git a/datafit/package.json b/datafit/package.json index 6b0c9656..cdd00d61 100644 --- a/datafit/package.json +++ b/datafit/package.json @@ -1,6 +1,6 @@ { "name": "datafit", - "version": "1.3.0", + "version": "1.3.1", "description": "Simple curve-fitting algorithm", "homepage": "https://npm.nicfv.com/datafit", "main": "dist/index.js",