This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2017-12-19
Channels
- # adventofcode (82)
- # beginners (70)
- # boot (34)
- # boot-dev (13)
- # cider (45)
- # clara (4)
- # cljs-dev (3)
- # cljsrn (2)
- # clojure (91)
- # clojure-art (8)
- # clojure-czech (1)
- # clojure-dusseldorf (3)
- # clojure-france (11)
- # clojure-germany (1)
- # clojure-greece (39)
- # clojure-hamburg (1)
- # clojure-italy (24)
- # clojure-norway (2)
- # clojure-spec (7)
- # clojure-uk (31)
- # clojurescript (56)
- # core-async (7)
- # cursive (8)
- # data-science (10)
- # datomic (41)
- # duct (7)
- # emacs (1)
- # events (1)
- # fulcro (83)
- # graphql (6)
- # klipse (1)
- # leiningen (28)
- # lumo (67)
- # off-topic (14)
- # om (9)
- # onyx (3)
- # perun (4)
- # re-frame (22)
- # reagent (11)
- # ring-swagger (2)
- # rum (1)
- # specter (46)
- # sql (13)
- # uncomplicate (17)
- # unrepl (114)
another interesting option is https://github.com/hswick/jutsu it also has server client architecture and uses plotly.js (which is quite awesome).
what’s the difference between vega and vega-lite?
Vega-lite is a more terse and semi-automated version of vega, easier for writing by hand, while vega is more general and flexible but more verbose and ultimately better as a "compile-to" target. I believe vega-lite itself just compiles down to vega, so to some extent it should be possible to mix and match as needed.
@metasoarous great, thanks for the explanation, I’ll give both a try to get a better feel
If you were to work on a pdf extraction and classification project in Clojure, what tools would you reach for?
vega lite is an 'interactive grammar for graphics' specifically targeted to data exploration and statistical analysis. As such it targets a subset of vega's capabilities but for the domain it targets it is much higher level. It compiles to vega (which in turn targets D3, which is even lower level)
Have a look at this video they gave: https://www.youtube.com/watch?v=9uaHRWj04D4
@jsa-aerial thanks, that makes sense, I’ll watch he video too