Skip to content

Instantly share code, notes, and snippets.

@snoble
Created July 7, 2013 07:34
Show Gist options
  • Save snoble/5942686 to your computer and use it in GitHub Desktop.
Save snoble/5942686 to your computer and use it in GitHub Desktop.
def significance(c_prediction, c_actual)
c_prediction - c_actual + (c_actual == 0 ? 0 : c_actual*(Math.log(c_actual) - Math.log(c_prediction)))
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment