David Anthoff
David Anthoff
It would probably be easiest to use the function, rather than the macro version, of `vlplot`.
> Why do you want to use infix operators? I'm trying to get rid of as many nesting levels as I can, I think they make things tricky in interactive...
> Isn't `@vlplot(p1 & p2 & p3, repeat=...)` as easy to type as `@vlplot(repeat=...) + p1 & p2 & p3`? So I'm mostly thinking about the interactive scenario where one...
Dijkstra's note is interesting, but yeah, it does strike me as a bit extreme :) But here is another reason against `>`: it has lower precedence than `|>`, which would...
Ok, here is another idea: - we use `&` for layering - we use `+` for sub plots, and we don't care whether the parent or the child is specified...
No, I mean [all composite views](https://vega.github.io/vega-lite/docs/composition.html). They always have an outer spec, and then some children (either one child or a multiple in the case of layers and concats). Here...
I think we don't print any indents in the vega and vega-lite MIME show methods, right? I might misremember, though... Those would be the most relevant places, right? Also, this...
Could you provide a bit more information about context etc? I assume you have a Jupyter notebook and run some code in there? What exactly are you calling? Is the...
But you can do `vlfrag("age:o", scale = (rangeStep = 17,))`, which is one less level of parentheses, right?
I think that was actually how VegaLite.jl was designed many years ago :) One problem is that we now have to create all these functions, and many of them have...