matplot axes set title code example
Example 1: set axis title matplotlib
fig.suptitle('test title', fontsize=20)
plt.xlabel('xlabel', fontsize=18)
plt.ylabel('ylabel', fontsize=16)
Example 2: matplotlib title
import matplotlib.pyplot as plt
plt.title('TITLE')