Skip to content

Commit

Permalink
Fixed labels
Browse files Browse the repository at this point in the history
  • Loading branch information
iceisnice committed Jun 23, 2019
1 parent 7b4c2c4 commit f543467
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions data_correction.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -609,8 +609,8 @@
"\n",
"plt.rcParams.update({'font.size': 16})\n",
"plt.figure(figsize = (12,6))\n",
"plt.plot(time_smb[1:],mean_smb,label='Changes in firn air content') \n",
"plt.plot(time_fac,mean_fac - mean_fac[0],label='Changes in height from surface mass balance anomalies')\n",
"plt.plot(time_smb[1:],mean_smb,label='Changes in height from surface mass balance anomalies') \n",
"plt.plot(time_fac,mean_fac - mean_fac[0],label='Changes in firn air content')\n",
"plt.legend(fontsize = 16)\n",
"plt.ylabel('meters')\n",
"plt.title('Byrd Glacier', fontsize = 16);"
Expand Down Expand Up @@ -646,8 +646,8 @@
"mean_smb = cumtrapz(mean_smb,x=time_smb) \n",
"\n",
"plt.figure(figsize = (12,6))\n",
"plt.plot(time_smb[1:],mean_smb,label='Changes in firn air content') \n",
"plt.plot(time_fac,mean_fac - mean_fac[0],label='Changes in height from surface mass balance anomalies')\n",
"plt.plot(time_smb[1:],mean_smb,label='Changes in height from surface mass balance anomalies') \n",
"plt.plot(time_fac,mean_fac - mean_fac[0],label='Changes in firn air content')\n",
"plt.legend(fontsize = 16)\n",
"plt.ylim([-1,1.75])\n",
"plt.ylabel('meters')\n",
Expand Down

0 comments on commit f543467

Please sign in to comment.