@datagrok/eda 1.1.3 → 1.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +8 -0
- package/README.md +2 -0
- package/dist/package.js +2 -2
- package/package.json +2 -1
- package/src/eda-ui.ts +8 -1
- package/src/package.ts +26 -11
- package/src/stat-tools.ts +266 -0
- package/src/utils.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# EDA changelog
|
|
2
2
|
|
|
3
|
+
## 1.1.4 (2023-10-11)
|
|
4
|
+
|
|
5
|
+
Implemented ANOVA.
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
* One-way ANOVA (see Top Menu > ML > Analysis of Variances (ANOVA)...)
|
|
10
|
+
|
|
3
11
|
## 1.1.3 (2023-08-24)
|
|
4
12
|
|
|
5
13
|
This release is centered around enhancing user-friendliness and addressing concerns.
|
package/README.md
CHANGED
|
@@ -11,3 +11,5 @@ EDA is a [package](https://datagrok.ai/help/develop/#packages) for the [Datagrok
|
|
|
11
11
|
* Partial least squares regression ([PLS](https://en.wikipedia.org/wiki/Partial_least_squares_regression))
|
|
12
12
|
* Supervised machine learning
|
|
13
13
|
* Least-squares support vector machine ([LS-SVM](https://en.wikipedia.org/wiki/Least-squares_support_vector_machine))
|
|
14
|
+
* Analysis of variances (ANOVA)
|
|
15
|
+
* One-way ANOVA ([link](https://en.wikipedia.org/wiki/One-way_analysis_of_variance))
|