I am trying to create 3 violin plots one above the other. When I do, the x ticks do not align with each other for some reason.
This is the output, and as you see they aren't aligning:

Here is the code:
fig, axs = plt.subplots(nrows=4, figsize=(6,12))
axs[0].violinplot(jazz['score'], points=20, widths=0.3,
showmeans=True, vert=False)
axs[0].set_title('Jazz', fontsize=10)
axs[0].set_xticks(range(11))
axs[0].set_yticks(range(0))
axs[1].violinplot(experimental['score'], points=20, widths=0.3,
showmeans=True, vert=False)
axs[1].set_title('Experimental', fontsize=10)
axs[1].set_xticks(range(11))
axs[1].set_yticks(range(0))
axs[2].violinplot(folk_country['score'], points=20, widths=0.3,
showmeans=True, vert=False)
axs[2].set_title('Folk/Country', fontsize=10)
axs[2].set_xticks(range(11))
axs[2].set_yticks(range(0))
axs[3].violinplot(rock['score'], points=20, widths=0.3,
showmeans=True, vert=False)
axs[3].set_title('Rock', fontsize=10)
axs[3].set_xticks(range(11))
axs[3].set_yticks(range(0))
fig.suptitle("Violinplots by genre")
fig.tight_layout(pad=2.08);
I've attempted to move them manually but no luck changing them.
Just found that this sorts it: