I am attempting to set the tick labels to regular weight (seems like defaults to bold), using tick_params()
, yet the sole relevant argument for tweaking tick labels here are labelcolor as well as labelsize. Could you assist me with this? Many thanks.
plt.style.use('seaborn-notebook')
plt.rcParams['font.family'] = 'Times New Roman'
Figure1 = plt.figure('Scatter Plot', figsize=(5,6), dpi=300)
Subplot1 = Figure1.add_subplot(1,1,1)
Subplot1.bar([4,5,6,7], [6,5,9,8], width= 0.8, color='r')
Subplot1.tick_params(labelsize=13)
Subplot1.set_yticks([2,4,6,8,10,12])