This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-02-14
Channels
- # ai (4)
- # babashka (4)
- # beginners (46)
- # biff (5)
- # calva (12)
- # clojure (6)
- # clojure-austin (13)
- # clojure-dev (27)
- # clojure-europe (62)
- # clojure-nl (1)
- # clojure-norway (17)
- # clojure-spec (2)
- # clojure-uk (12)
- # clojurescript (10)
- # cursive (3)
- # datahike (26)
- # datalevin (9)
- # datomic (7)
- # gratitude (4)
- # honeysql (9)
- # hyperfiddle (12)
- # instaparse (2)
- # lsp (65)
- # membrane (7)
- # missionary (2)
- # off-topic (8)
- # polylith (33)
- # portal (7)
- # quil (1)
- # re-frame (4)
- # reagent (18)
- # releases (3)
- # ring (3)
- # spacemacs (2)
- # specter (4)
I have a weird issue not really that important. Rendering boxplot using vega-lite in portal doesn't work well (Renders as horizontal lines each line represents a data point). Same spec renders well in vega lite editor in chrome. I will provide screenshots if needed when I am at my laptop
my data is just one column called value. I think in the viz above there are around 500 of those data points
(tap> ^{:portal.viewer/default :portal.viewer/vega-lite}
{:data {:values (mapv #(hash-map :value (:xirr %)) (concat sim1 sim2 sim3))}
:mark {:type "boxplot"
:extent 1.5
:median {:color "red"}
:ticks true}
:encoding {:y {:field "value" :type "quantitative"}}})