Calculate correlation heatmap, only works for real variables.
You can run it on single node with compute
and env variable MODEL_PARAM_graph=correlation_heatmap
.
compute
Or in a distributed mode with
compute --mode intermediate
compute --mode aggregate --job-ids 1 2 3
Intermediate mode calculates covariance matrix from a single node, while aggregate mode is used after intermediate to combine statistics from multiple jobs and produce the final graph.
Calculate PCA and return biplot visualization and screeplot. It only works for real variables.
You can run it on single node with compute
and env variable MODEL_PARAM_graph=pca
.
compute
Or in a distributed mode with
compute --mode intermediate
compute --mode aggregate --job-ids 1 2 3
Run: ./build.sh
Run: captain test
Run: ./publish.sh
Run unit tests
find . -name \*.pyc -delete
(cd tests; docker-compose run test_suite -x --ff --capture=no)