altair-viz / altair-viz/altair-transform
mark_errorbar silently fails
Aperta
- Lingua principale
- Python
- Stelle
- 71
- Fork
- 8
- Metriche di merge delle PR
- Nessuna PR unita negli ultimi 30g
Descrizione
```
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).
Guida per i contributori
Nessuna guida per i contributori indicizzata per questo repository
Valutazione
Questa issue non è ancora stata valutata.