Mattijn van Hoek
Mattijn van Hoek
It will be in the upcoming Altair v5, sneak peak of docs of this example: https://joelostblom.github.io/altair-docs/user_guide/marks/text.html Now, you can do `chart.to_dict()` to serialize it to a Vega-Lite specification that you...
It's for all the examples. Here is a link to my IPython Notebook. It's just a copy of yours. I also tried your code from before your commit two weeks...
This was also raised here. I wished I could provide a meaningful answer, but I can't either: ```json { "$schema": "https://vega.github.io/schema/vega-lite/v5.15.1.json", "data": { "url": "https://cdn.jsdelivr.net/npm/[email protected]/data/stocks.csv" }, "transform": [{"filter": "year(datum.date) ==...
Another example where this is valuable: ```json { "$schema": "https://vega.github.io/schema/vega-lite/v5.15.1.json", "spec": { "data": {"url": "data/wheat.json"}, "mark": {"type": "bar"}, "encoding": { "color": {"datum": {"repeat": "layer"}}, "x": {"field": "year", "type": "ordinal"}, "y":...
You've seen https://observablehq.com/@cse412/cse-412-section-3-vega-lite#cell-906? ```js vl.x().fieldQ('Horsepower').scale({type:'log'}), // use log scale ```
I see. The I don't know. Something as such: ```js var logscale = vega.scale('log'); var logviriscale = logscale().range(vega.scheme('viridis')); ``` Would make sense to me, but I don't know much about...
Not entirely sure if it's the case for all use-cases at the moment, but in operational systems we fill the drop-down fields by database-queries and update the data in the...
If I add a `"y":"independent"` to the scale-resolver in the VL-spec and in the Vega-spec remove the `impute` transform and make the `kde` transform to resolve `independent` it seems like...
Thank you for raising the issue and it is great to see you find this package useful for your need! Until now, speed has been the main bottleneck, but if...
Thanks for showing your package! May I ask how the directed graph of networkx is being utilised for your use-case? That seems interesting! I was looking to your referenced geojson...