Christopher Small
Christopher Small
The following code in a notebook produces an error: ``` (s/def ::probability (s/double-in :min 0 :max 1)) ``` The error in oz logs: ```java.lang.ClassCastException``` My guess is this is a...
There's been some initial work on this, but the commands, subcommands and options all still need to be sorted out. Should cover the equivalent of * `build!` * `live-view!` *...
Right now, we use `clojure.walk/prewalk` to walk the document hiccup structures and replace entries such as `[:vega-lite {....}]` with actual reagent component calls (e.g. `[oz.core/vega-lite {...}]`). The problem with this...
This would be nice for folks who want the sort of notebook where you can see the code alongside the resulting visualizations etc. Would also potentially open up the possibility...
This is a valuable mitigating factor for some behavior that is likely to change with #175. Basically, we need a function that looks something like `oz/update-default-compile-settings!` so that things like...
The goal here is to avoid complete rerendering of entire notebooks every time a bit of prose (or block later in the sequence) updates. This can get expensive if there...
This is something I've talked about for a while (and is actually already in progress), and is an important step to completing the vision of Oz as a tool for...
This is another issue peeled off from #95, and closely related to #173, but a little more complicated. The reason this is more complicated than #173 is that with data,...
This issue is being peeled off from #95. Now that #167 has been resolved, it is possible to take advantage of the Vega View API (via the `:view-callback` option of...