reveal

comptedeouf 2022-08-09T22:02:18.095559Z

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>)

vlaaad 2022-08-10T06:01:27.519229Z

Yes, there is a limit, I think the reasoning was that too many data points will be incomprehensible

vlaaad 2022-08-10T06:02:06.070679Z

Do you need a higher limit? I think I can bump it

comptedeouf 2022-08-31T21:56:00.456699Z

if the limit could be a dynamic var, I could adjust it when needed, but no big deal, thanks for checking.