I'm curious how I can use Python to combine multiple graphs into a single image. Please review my coding for two plots.
#GRAPH 1: LFPR
mean_1 = sims['hlfpr_data']
std_1 = sims['lfprsel1']
std_2 = sims['lfprseh1']
mean_2 = sims['uhlfpr_sim']
plt.plot(x, mean_1, 'r--', label='EPS data')
plt.plot(x, mean_2, 'b-', label='Model')
plt.fill_between(x, std_1, std_2, color='r', alpha=0.3)
plt.legend(title='')
plt.ylabel("Share")
plt.xlabel("Age")
plt.show()
#GRAPH 2: ASSETS
mean_1 = sims['ass_data']
std_1 = sims['mplus2se']
std_2 = sims['mminus2s']
mean_2 = sims['ass_sim']
plt.plot(x, mean_1, 'r--', label='EPS data')
plt.plot(x, mean_2, 'b-', label='Model')
plt.fill_between(x, std_1, std_2, color='r', alpha=0.3)
plt.legend(title='')
plt.ylabel("Millions of constant 2009 US dollars")
plt.xlabel("Age")
plt.show()
Please, any assistance is greatly appreciated.