You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As suggested by @ysangkok in the New-York Haskell Meetup Co-Hack, can we provide "simple" routines to set up basic operations - e.g. scatter plot?
One issue is that it's hard to extend since we can create a VegaLite type but then can't deconstruct it to extend/add/adjust plot options (given that VegaLite is just Aeson's Value rather than a hvega type).
The text was updated successfully, but these errors were encountered:
I have been playing with VegaLite and I am still wondering how I'd input Haskell lists of numbers into the system. I saw dataFromColumns, and its example:
But this expression yields a function [DataColumn] -> [DataColumn]. I fail to get the intuition of this example, since each dataColumn call seems to tack on data, but doesn't actually change the type. Furthermore, I can't stuff this value into a place where I'd have a dataFromUrl. I think many users of the library will be plotting generated data, so I think an easy interface should allow for ingesting matrices of N dimensions easily without requiring having them in JSON.
As suggested by @ysangkok in the New-York Haskell Meetup Co-Hack, can we provide "simple" routines to set up basic operations - e.g. scatter plot?
One issue is that it's hard to extend since we can create a VegaLite type but then can't deconstruct it to extend/add/adjust plot options (given that VegaLite is just Aeson's Value rather than a
hvega
type).The text was updated successfully, but these errors were encountered: