fig, axs = plt.subplots(3, 1, figsize=(10, 10)) axs[0].plot(stats[:, 0], stats[:, 1], 'o') axs[1].plot(stats[:, 1], stats[:, 2], 'x') axs[2].plot(stats[:, 0], stats[:, 2], 's') for stat, emotion in zip(stats, evalEmotions): axs[2].annotate(emotion, xy=(stat[0], stat[2]))