├── .gitignore ├── LICENSE.md ├── README.md ├── docs ├── README.md └── Why_APCA ├── images ├── BPCAlogo.png ├── ColumnCompareAll400.png └── null.md ├── package.json └── src ├── bridge-pca.js └── test.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/README.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Why_APCA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/docs/Why_APCA -------------------------------------------------------------------------------- /images/BPCAlogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/images/BPCAlogo.png -------------------------------------------------------------------------------- /images/ColumnCompareAll400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/images/ColumnCompareAll400.png -------------------------------------------------------------------------------- /images/null.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/package.json -------------------------------------------------------------------------------- /src/bridge-pca.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/src/bridge-pca.js -------------------------------------------------------------------------------- /src/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Myndex/bridge-pca/HEAD/src/test.html --------------------------------------------------------------------------------