multiple column/row facet wrap in altair
问题 In ggplot2 , it's easy to create a faceted plot with facets that span both rows and columns. Is there a "slick" way to do this in altair ? facet documentation It's possible to have facets plot in a single column, import altair as alt from vega_datasets import data iris = data.iris chart = alt.Chart(iris).mark_point().encode( x='petalLength:Q', y='petalWidth:Q', color='species:N' ).properties( width=180, height=180 ).facet( row='species:N' ) and in a single row, chart = alt.Chart(iris).mark