## Create a new config/initialisation file
Create a user-level initialisation file init.el:
touch .emacs.d/init.el
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| """Computes the distance correlation between two matrices. | |
| https://en.wikipedia.org/wiki/Distance_correlation | |
| """ | |
| import numpy as np | |
| from scipy.spatial.distance import pdist, squareform |