John Alexis Guerra Gómez
Results
14
issues of
John Alexis Guerra Gómez
The vega-lite api is great, but is quite difficult to get started outside observable. Here are some starter codes for node and the browser that should help
Adding `.empty(false)` to a selection throws "Error: Unrecognized signal name:" See [this example](https://observablehq.com/d/976e79564fd0220c#error) ```js { const highlight = vl.selectPoint("highlight").empty(false); //❌ return vl .markRect({ strokeWidth: 2 }) .select(highlight) .encode( vl.y().fieldN("actual"), vl.x().fieldN("predicted"),...