Skip to content

Instantly share code, notes, and snippets.

View sirherrbatka's full-sized avatar

Marek Kochanowicz sirherrbatka

View GitHub Profile
(ql:quickload :cl-data-structures)
(defparameter *pseudo-generator*
(cl-ds:xpr (:i 0)
(when (< i 5)
(cl-ds:send-recur i :i (1+ i)))))
(dotimes (k 6)
(print (funcall *pseudo-generator*)))
(vellum.plot:visualize :plotly
(vellum.plot:stack *roc-frame*
(vellum.plot:mapping :x 'fpr :y 'tpr)
(vellum.plot:aesthetics :label "ROC")
(vellum.plot:line))
"~/roc-plot.html")