berangerthomas commited on
Commit
4e4036b
·
1 Parent(s): de5407c

Create CHANGELOG.md

Browse files
Files changed (1) hide show
  1. CHANGELOG.md +21 -0
CHANGELOG.md ADDED
@@ -0,0 +1,21 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Changelog
2
+
3
+ ## [0.2.0] - 2026-01-13
4
+
5
+ ### Added
6
+ - Fourier Transform Visualizer: compose signals from up to 4 sine waves with frequency, amplitude, and phase control; displays time-domain signal, magnitude spectrum, phase spectrum, and signal metrics (sampling rate, Nyquist frequency, frequency resolution, total power, RMS amplitude)
7
+ - Linear regression playground: interactive point placement with linear and polynomial regression (degrees 1-10); features residual visualization, confidence bands (±2σ), zoom and pan, drag-and-drop points, and regression statistics (R², adjusted R², MSE, MAE, RMSE, residual plot)
8
+
9
+ ### Changed
10
+ - Refactored shared utilities in `common.js` for matrix operations, statistical calculations, and chart management
11
+
12
+ ## [0.1.0] - 2025-08-15
13
+
14
+ ### Added
15
+ - Direct classification: Gaussian Naive Bayes classifier on synthetic 2D data with adjustable class separation and spread; displays ROC curve, AUC, confusion matrix, and classification metrics
16
+ - Inverse classification: direct confusion matrix manipulation (TP, FP, TN, FN) with metric calculation, ROC curve generation, and score distribution simulation
17
+ - Common utilities: shared JavaScript module with ROC curve computation, confusion matrix rendering, metric calculations, and drag-and-drop functionality
18
+ - Base styling: responsive CSS framework with chart cards, floating controls, and unified visual design
19
+
20
+ [0.2.0]: https://github.com/berangerthomas/SchoolOfStatistics/compare/v0.1.0...v0.2.0
21
+ [0.1.0]: https://github.com/berangerthomas/SchoolOfStatistics/releases/tag/v0.1.0