Diego Marvid
Diego Marvid
I have the following code for displaying the data: ``` brush = alt.selection(type='interval') points = alt.Chart(houses_prices).mark_point(opacity=0.2).encode( x='id:Q', y='SalePrice:Q', color=alt.condition(brush, alt.value('blue'), alt.value('lightgray')) ).add_selection( brush ) qual = alt.Chart(houses_prices).mark_bar().encode( alt.Y('OverallQual:N', axis=alt.Axis()), x='count(OverallQual):Q'...
I recorded a video using an iPhone in MOV format and the output was flipped vertically. The minimum code to reproduce the error is the following: ```python from norfair import...