This code:
import altair as alt
from vega_datasets import data
alt.Chart(data.iris()).mark_point().encode(
x='petalLength:Q',
y='petalWidth:Q',
facet=alt.Facet('species:N', header=alt.Header(labels=False, title=None), columns=3)
).properties(
width=250,
height=250
)
produces this chart:
I have added red lines beneath what I believe are called subplot "labels". How can I remove them? This question asked how to change them, and @jakevdp said that is impossible. This question asked how to remove them (same as me), and @jakevdp hasn't answered yet. They used a column parameter to eliminate the labels, but when I try that, it complains about the columns parameter I'm using. I want to both (a) eliminate the labels and (b) limit the number of subplots per row, with automatic row wrapping.
