You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4Lines changed: 4 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
# Changelog
2
2
3
+
## 1.3.1 - WIP
4
+
- Adding `rSquared()` method for R² (coefficient of determination) — proportion of variance explained by linear regression
5
+
3
6
## 1.3.0 - 2026-02-22
4
7
- Adding `StreamingStat` class (experimental) for streaming/online computation of mean, variance, stdev, skewness, kurtosis, sum, min, and max with O(1) memory
5
8
- Adding `percentile()` method for computing the value at any percentile (0–100) with linear interpolation
@@ -12,6 +15,7 @@
12
15
- Adding `zscores()` method for computing z-scores of each value in a dataset
13
16
- Adding `outliers()` method for z-score based outlier detection with configurable threshold
14
17
- Adding `iqrOutliers()` method for IQR-based outlier detection (box plot whiskers), robust for skewed data
18
+
- Adding `rSquared()` method for R² (coefficient of determination) — proportion of variance explained by linear regression
Copy file name to clipboardExpand all lines: README.md
+1Lines changed: 1 addition & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,6 +98,7 @@ The various mathematical statistics are listed below:
98
98
|`correlation()`| Pearson’s or Spearman’s rank correlation coefficient for two inputs |
99
99
|`covariance()`| the sample covariance of two inputs |
100
100
|`linearRegression()`| return the slope and intercept of simple linear regression parameters estimated using ordinary least squares (supports `proportional: true` for regression through the origin) |
101
+
|`rSquared()`| coefficient of determination (R²) — proportion of variance explained by linear regression |
101
102
|`kde()`| kernel density estimation — returns a closure that estimates the probability density (or CDF) at any point |
102
103
|`kdeRandom()`| random sampling from a kernel density estimate — returns a closure that generates random floats from the KDE distribution |
0 commit comments