Skip to content

Commit 3fd3028

Browse files
committed
docs: mark kurtosis task complete
1 parent 4407af1 commit 3fd3028

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PRD.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,5 +16,5 @@ We are adding new statistical functions that follow the existing patterns in `ma
1616
- [x] Add `interquartileRange(arr)` — returns Q3 - Q1 (the 75th percentile minus the 25th percentile). Should reuse the percentile function internally. Add to `math_modules/interquartileRange.js`, export from `index.js`, add tests.
1717
- [x] Add `zScore(arr, value)` — returns how many standard deviations a value is from the mean: `(value - mean) / standardDeviation`. Should reuse existing mean and standardDeviation functions. Add to `math_modules/zScore.js`, export from `index.js`, add tests.
1818
- [x] Add `skewness(arr)` — returns the sample skewness (Fisher's definition). Positive = right tail, negative = left tail, 0 = symmetric. Add to `math_modules/skewness.js`, export from `index.js`, add tests with known symmetric and skewed datasets.
19-
- [ ] Add `kurtosis(arr)` — returns the excess kurtosis. Normal distribution = 0. Add to `math_modules/kurtosis.js`, export from `index.js`, add tests.
19+
- [x] Add `kurtosis(arr)` — returns the excess kurtosis. Normal distribution = 0. Add to `math_modules/kurtosis.js`, export from `index.js`, add tests.
2020
- [ ] Update `README.md` — add documentation for all six new functions with usage examples, following the existing format.

0 commit comments

Comments
 (0)