Answers for "how to set axis of y in python"

5

set axis labels python

# Basic syntax:
plt.xlabel("X axis label") # Add ", fontsize = #" to control fontsize
plt.ylabel("Y axis label")

# Example usage:
plt.plot(range(5))
plt.xlabel("X axis label")
plt.ylabel("Y axis label")
plt.title("Figure title", fontsize = 20)

# Note, xlabel and ylabel come from matplotlib.pyplot and plt is an 
# 	abbreviation for this, e.g. import matplotlib.pyplot as plt
Posted by: Guest on August-15-2020
2

set axis limits matplotlib

axes.set_xlim([xmin, xmax])
axes.set_ylim([ymin, ymax])
Posted by: Guest on March-09-2020
0

set axis plt python

from matplotlib import pyplot as plt
plt.axis([0, 10, 0, 20])
Posted by: Guest on November-28-2020

Code answers related to "how to set axis of y in python"

Python Answers by Framework

Browse Popular Code Answers by Language