Skip to content

Instantly share code, notes, and snippets.

View wadehenning's full-sized avatar

Wade Henning wadehenning

  • Themos Technologies
  • Tallahassee, FL
View GitHub Profile
@wadehenning
wadehenning / PCA.js
Created December 4, 2018 16:36 — forked from Bondifrench/PCA.js
Principal component analysis in JS
/*
http://bl.ocks.org/ktaneishi/9499896#pca.js
*/
var PCA = function(){
this.scale = scale;
this.pca = pca;
function mean(X){
// mean by col
var T = transpose(X);