logo_learn_stats

How you can Poised Axis Ticks in Matplotlib (With Examples)

Posted on
banner 336x280

You’ll be able to importance please see plain syntax to all set the axis ticks in a Matplotlib plot:

#all set x-axis ticks (step dimension=2)
plt.xticks(np.arange(min(x), max(x)+1, 2))

#all set y-axis ticks (step dimension=5)
plt.yticks(np.arange(min(y), max(y)+1, 5))

Refer to instance displays the way to importance this syntax in observe.

banner 468x60

Instance: Poised Axis Ticks in Matplotlib

Assume we importance please see code to build a sequence plot in Matplotlib:

import numpy as np
import matplotlib.pyplot as plt

#outline information
x = [0, 2, 7, 10, 12, 15, 18, 20]
y = [0, 5, 9, 13, 19, 22, 29, 36]

#build sequence plot
plt.plot(x,y)

#show sequence plot
plt.display()

Via default, Matplotlib has selected to importance a step dimension of 2.5 at the x-axis and 5 at the y-axis.

We will be able to importance please see code to switch the step dimension on every axis:

import numpy as np
import matplotlib.pyplot as plt

#outline information
x = [0, 2, 7, 10, 12, 15, 18, 20]
y = [0, 5, 9, 13, 19, 22, 29, 36]

#build sequence plot
plt.plot(x,y)

#specify axis tick step sizes
plt.xticks(np.arange(min(x), max(x)+1, 2))
plt.yticks(np.arange(min(y), max(y)+1, 4))

#show sequence plot
plt.display()

Matplotlib set axis ticks

Realize that the step dimension at the x-axis is now 2 and the step dimension at the y-axis is 4.

Supplementary Sources

Refer to tutorials give an explanation for the way to cure alternative usual mistakes in Python:

How you can Medication KeyError in Pandas
How you can Medication: ValueError: can not convert glide NaN to integer
How you can Medication: ValueError: operands may no longer be broadcast in conjunction with shapes

banner 336x280

Leave a Reply

Your email address will not be published. Required fields are marked *