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.

Revisions

  1. @wiso wiso revised this gist Mar 20, 2018. 1 changed file with 2 additions and 0 deletions.
    2 changes: 2 additions & 0 deletions covariance_to_correlation.py
    Original file line number Diff line number Diff line change
    @@ -1,3 +1,5 @@
    import numpy as np

    def correlation_from_covariance(covariance):
    v = np.sqrt(np.diag(covariance))
    outer_v = np.outer(v, v)
  2. @wiso wiso created this gist Mar 20, 2018.
    6 changes: 6 additions & 0 deletions covariance_to_correlation.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,6 @@
    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