Stefan Binder
Stefan Binder
In Altair, all layered charts are represented with the `alt.LayerChart` class. However, that class has as schema `'#/definitions/TopLevelLayerSpec'`. If a layered chart is part of another chart, it should match...
For anyone landing on this repository and looking for a way to show [Vega-Altair](https://altair-viz.github.io/) charts in your Dash application, see [dash-vega-components](https://github.com/binste/dash-vega-components).
### What happens? When using a timestamp to filter a table on a timestamp column, I get a different result depending on if a timestamp conversion happened in a subquery...
The JavaScript error reported in #46 does not raise a corresponding Python error. Instead, vl-convert still returns an svg string but the svg itself is wrong due to the error...
I noticed this when updating Altair to version 5 in an environment but forgot to update vl-convert and still used 0.8.0. When saving a chart I got `RuntimeError: Unsupported Vega-Lite...
### What happened? In a web application, I'm creating rather complicated Ibis expressions in the backend. The execution of the final expression takes < 1 second but creating the expression...
Relates to #313. For layered and multi-view charts, Altair takes a bit of a shortcut and does not use the exact classes which map to the Vega-Lite schema but instead...
To speed up the compilation from Ibis models to SQL, we could do it for only the models which are relevant for the current dbt command, i.e. we could use...
Could look something like: 1. `dbt-ibis develop -s stg_customers` -> Converts `stg_customers.ibis` to `stg_customers.ibis`, unpacking the `model` function for easier editing and keeping the rest of the code the same...
[Generic dbt tests](https://docs.getdbt.com/best-practices/writing-custom-generic-tests) seem difficult to support in dbt-ibis without being able to connect to the database directly. During compilation of Ibis to SQL, we don’t know the schema of...