Answers for "change size of yticks python"

0

change size of yticks python

import matplotlib.pyplot as plt
# We prepare the plot  
fig, ax = plt.subplots()
ax.tick_params(axis='y', which='major', labelsize=10)
ax.tick_params(axis='y', which='minor', labelsize=10)
Posted by: Guest on September-10-2021

Python Answers by Framework

Browse Popular Code Answers by Language