Skip to content

Instantly share code, notes, and snippets.

@defndaines
Created December 29, 2016 19:16
Show Gist options
  • Select an option

  • Save defndaines/81652a1faa5abb20ec5bfde2dc844c4e to your computer and use it in GitHub Desktop.

Select an option

Save defndaines/81652a1faa5abb20ec5bfde2dc844c4e to your computer and use it in GitHub Desktop.
Area Under the Curve [AUC]
(defn auc [lines]
(let [[a _ n fp' p tp'] (reduce iter [0 Double/NEGATIVE_INFINITY 0 0 0 0] lines)]
(/ (+ a (trap-area n fp' n tp'))
(* p n))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment