Keep altair sliders with plots when concatenating
问题 When concatenating 2 charts with their own sliders, the sliders are grouped together at the end. Is there a way to have the sliders remain with each plot? Here is an example, modified from the docs import altair.vegalite.v3 as alt import pandas as pd import numpy as np rand = np.random.RandomState(42) df = pd.DataFrame({"xval": range(100), "yval": rand.randn(100).cumsum()}) slider1 = alt.binding_range(min=0, max=100, step=1, name="cutoff1:") selector1 = alt.selection_single( name=