Skip to content

Instantly share code, notes, and snippets.

@gilesbowkett
Forked from mattly/d-gen.clj
Created September 22, 2016 17:15
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
(asdf)
(defn- state-line [[state results]]
(let [d (->> results
(sort-by :year)
(reduce (fn [line {:keys [year from-center]}]
(conj line (str (x-for-margin from-center)
","
(+ 10 (year-base year)))))
[])
(interpose "L")
(concat ["M"])
(str/join " "))]
[:path {:key state :d d :stroke "#ccc" :fill "none"}]))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment