You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import pandas as pd
import altair as alt
from altair_transform import transform_chart
df = pd.read_json('https://vega.github.io/vega-datasets/data/iris.json')
error_bars = alt.Chart(df).mark_errorbar(extent='ci').encode(
x=alt.X('petalLength:Q', scale=alt.Scale(zero=False)),
y=alt.Y('species:N')
)
transform_chart(error_bars)
The transformation does not take place but NotImplementedError is also not raised (which would be expected based on the Limitations section in the README).
The text was updated successfully, but these errors were encountered:
Thanks – your chart contains no direct data transforms, so the code lets it pass through unmodified. There are transforms implied by mark_errorbar, but altair-transform does not yet recognize those.
Concatenated charts have not yet been implemented, because nobody has yet chosen to contribute that.
If you would like to contribute either of these features, please feel welcome, and let me know if you have questions about how to proceed.
The transformation does not take place but
NotImplementedError
is also not raised (which would be expected based on the Limitations section in the README).The text was updated successfully, but these errors were encountered: