Answers for "change y axis label position matplotlib"

0

changing axis labels matplotlib

import matplotlib.pyplot as plt

fig, ax = plt.subplots()

labels = [item.get_text() for item in ax.get_xticklabels()]
labels[1] = 'Testing'

ax.set_xticklabels(labels)
Posted by: Guest on May-13-2020
0

add y axis label matplotlib

plt.ylabel("Y axis label", fontsize=18)
Posted by: Guest on July-17-2021

Code answers related to "change y axis label position matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language