I have this code for my matplotlib initialization:
import matplotlib.pylab as pylab
params = {'legend.fontsize': 20,'figure.figsize': (8, 5),'axes.labelsize': 20,
'axes.titlesize':'large','axes.labelpad': 12,'xtick.labelsize':20,
'ytick.labelsize':20, 'font.family': 'Times New Roman'}
pylab.rcParams.update(params)
However, the font on my sns.barplot axes titles and tick labels and legend labels are not changing. How do I fix this?