altair-viz / altair-viz/altair-transform
mark_errorbar silently fails
Abierto
- Lenguaje dominante
- Python
- Estrellas
- 71
- Forks
- 8
- Métricas de merge de PR
- Sin PR fusionados en 30 d
Descripción
```
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).
Guía de contribución
No hay ninguna guía de contribución indexada para este repositorio
Evaluación
Este issue todavía no se ha evaluado.