This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-08-09
Channels
- # announcements (3)
- # babashka (120)
- # beginners (87)
- # calva (7)
- # clj-kondo (35)
- # cljsrn (25)
- # clojure (94)
- # clojure-austin (4)
- # clojure-europe (53)
- # clojure-nl (2)
- # clojure-norway (6)
- # clojurescript (16)
- # conjure (8)
- # cursive (6)
- # data-oriented-programming (2)
- # data-science (19)
- # datahike (1)
- # datalevin (29)
- # datomic (13)
- # fulcro (50)
- # gratitude (1)
- # honeysql (9)
- # jackdaw (2)
- # kaocha (7)
- # leiningen (3)
- # malli (4)
- # off-topic (4)
- # polylith (3)
- # re-frame (5)
- # reagent (1)
- # releases (1)
- # reveal (4)
- # shadow-cljs (17)
- # tools-deps (10)
- # vim (17)
- # vscode (4)
- # xtdb (3)
Is there a limit (32 entries) on how big a hash-map can be visualized as a bar-chart/pier-chart ? From the contextual menu on the following map I can select the view:bar-chart
(->> (for [a (range 32)
:let [k (str (char (+ 65 (mod a 26))) a)]]
[k a])
flatten
(apply hash-map)
tap>)
not possible with 33 elements
(->> (for [a (range 33)
:let [k (str (char (+ 65 (mod a 26))) a)]]
[k a])
flatten
(apply hash-map)
tap>)
Yes, there is a limit, I think the reasoning was that too many data points will be incomprehensible
if the limit could be a dynamic var, I could adjust it when needed, but no big deal, thanks for checking.