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
{{ message }}
This repository has been archived by the owner on Aug 2, 2019. It is now read-only.
I am looking at the stacked bar example : https://github.com/wrobstory/vincent/blob/master/examples/stacked_bar_examples.py
and I am having trouble understanding the following snippet:
enter_props = PropertySet(x=ValueRef(scale='x', field="data.idx"),
y=ValueRef(scale='y', field="y"),
width=ValueRef(scale='x', band=True, offset=-1),
y2=ValueRef(field='y2', scale='y'),
fill=ValueRef(scale='color', field='data.col'))
Specifically I don't understand:
I don't understand it because I can't find a field called "y2" in the data set so how is this working??
The text was updated successfully, but these errors were encountered: