Answers for "set x tick labels matplotlib"

0

Set axis ticks matplotlib

import numpy as np
import matplotlib.pyplot as plt
import matplotlib.ticker as ticker

x = [0,5,9,10,15]
y = [0,1,2,3,4]
fig, ax = plt.subplots()
ax.plot(x,y)
start, end = ax.get_xlim()
ax.set_xticks(np.arange(start, end, 2))
plt.show()
Posted by: Guest on August-19-2021
0

own labels for ticks matplotlib

ax.set_xticklabels(labels)
Posted by: Guest on April-08-2021
0

matplotlib tick label position left and right x axis

plt.setp(ax.xaxis.get_majorticklabels(), ha='right')
Posted by: Guest on May-11-2020

Code answers related to "set x tick labels matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language