I need to reduce the font size of yticks and remove the white vertical lines plotting down from the yticks. For how much I try, it's only the xticks that get changed. Any leads would be much appreciated.
Code
fig, ax = plt.subplots(1, 1, figsize=(5, 5))
plt.subplots_adjust(left=0.1, right=0.8, top=0.8, bottom=0.1)
plt.xticks(fontsize=6)
plt.yticks(fontsize=6)
plt.rcParams['font.size'] = 6
plt.rcParams['text.color'] = 'black'
plt.rcParams["legend.facecolor"] = '#c2b6b6'
plt.rc('axes', titlesize=7)
plt.legend(handles=handles, bbox_to_anchor=(1.2, 0.9), loc='upper right', borderaxespad=0.,
fontsize=6)
mosaic(data, label_rotation=0, title=name, horizontal=False, properties=props,
labelizer=labelizer, ax=ax)
plt.savefig("tile_plot.png")