1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45
| import os.path import xarray as xr import numpy as np import matplotlib.pyplot as plt import pandas as pd
SMALL_SIZE = 8 MEDIUM_SIZE = 10 BIGGER_SIZE = 24
plt.rcParams["figure.figsize"] = (10,8) plt.rc('font', size=BIGGER_SIZE) plt.rc('axes', titlesize=BIGGER_SIZE) plt.rc('axes', labelsize=BIGGER_SIZE) plt.rc('xtick', labelsize=BIGGER_SIZE) plt.rc('ytick', labelsize=BIGGER_SIZE) plt.rc('legend', fontsize=BIGGER_SIZE) plt.rc('figure', titlesize=BIGGER_SIZE)
plt.rcParams.update({'font.family':'sans-serif'}) plt.rcParams['font.sans-serif'] = ['DejaVu Sans']
plt.title("diff T2m (UCM-on - UCM-off) of selected urban area") plt.ylabel("T2m (deg C)") plt.xlabel("Time (HKT)")
plt.axhline(y = 0.0, color = 'k', linestyle='--', linewidth=2, label = 'axhline') plt.axvline(x = 1.0, color = 'b', linestyle='--', linewidth=2, label = 'axvline')
plt.xticks(rotation=45) plt.grid(linestyle='--')
plt.legend(loc='center left', bbox_to_anchor=(1, 0.5)) plt.tight_layout() plt.show() plt.close()
|