Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save edson-github/d342370d4bbb80d22a7c4ab39cdfa74f to your computer and use it in GitHub Desktop.
Save edson-github/d342370d4bbb80d22a7c4ab39cdfa74f to your computer and use it in GitHub Desktop.
Compute correlation matrix from covariance matrix using numpy
import numpy as np
def correlation_from_covariance(covariance):
v = np.sqrt(np.diag(covariance))
outer_v = np.outer(v, v)
correlation = covariance / outer_v
correlation[covariance == 0] = 0
return correlation
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment