import matplotlib.pyplot as plt
plt.style.use('seaborn-v0_8-darkgrid')  # set matplotlib style sheet

plateifus = ['8485-1901', '7443-12701']
mapnames = ['stellar_vel', 'stellar_sigma']

rows = len(plateifus)
cols = len(mapnames)
fig, axes = plt.subplots(rows, cols, figsize=(8, 8))
for row, plateifu in zip(axes, plateifus):
    maps = Maps(plateifu=plateifu)
    for ax, mapname in zip(row, mapnames):
        mapplot.plot(dapmap=maps[mapname], fig=fig, ax=ax, title=' '.join((plateifu, mapname)))

fig.tight_layout()