plotrb
plotrb copied to clipboard
A plotting library in Ruby built on top of Vega and D3.
wrote one of possible problem solutions - added calls to ::Plotrb::Base.classify method to Mark and Scale classes (to camelcase field names), fixed tests. Another solution would be to remove classify...
When you try to use the transformation inside a mark, like this: ``` ruby data = pdata.name('table') do url('data/groups.json') end facet_t = facet_transform.keys('category') group_m = group_mark.from(data, facet_t) do enter do...
I played around with making plotrb work with iruby all day today, but no luck so far. Vincent already works with iPython, so it should be a simple matter to...
I have the field `:common_name` in one of my data sets, and it gets turned into this: ``` { "name": "minerals", "values": [ { "commonName": "almandine", "low": 371, "high": 395...
Can't find much documentation on creating legends. =/
I think there are still some problems with the group mark. In particular, to get things to the right height in grouped_bar, I have to include a `mult` in several...
[Vega](http://trifacta.github.io/vega/) has more than 20 examples in its online editor. You can see them at http://trifacta.github.io/vega/editor/. Simple select different visualisations from the drop-down menu on top, and you will be...
Vega's lack of documented schema makes it hard to keep track of changes happening with the JSON spec. It would be absolutely awesome if we can properly document (and maintain)...
Take a look at @cjfuller's pull request #1. It would be great if we can have a similar DSL, in other words a higher level of abstraction on Plotrb, for...
This is related to #6. Users may not have Vega installed as a Node.js module; after all, Vega is intended to be used directly in browser. We should have a...