Python中的 Matplotlib.pyplot.ylabel()
Matplotlib是一个非常强大的绘图库,对使用Python和 NumPy 的人很有用。为了进行统计干扰,可视化我们的数据变得非常必要,而 Matplotlib 是非常有用的工具。
matplotlib.pyplot.ylabel()
此函数设置绘图 y 轴的标签。
Syntax: matplotlib.pyplot.ylabel(ylabel, fontdict=None, labelpad=None)
Parameters:
ylabel: The name of the label
fontdict: Adds the font styles to the label
labelpad: This helps us to set the spacing between label and the axis
示例 #1:
import matplotlib.pyplot as plt
# setting x values
x =['Geeks', 'for', 'geeks', 'tutorials']
# Setting y values
y =[1, 2, 3, 4]
# Adding label on the y-axis
plt.ylabel('Numbers label')
# plotting the graph
plt.plot(x, y)
输出:
示例 #2:
import matplotlib.pyplot as plt
x =['Geeks', 'for', 'geeks', 'tutorials']
y =[1, 2, 3, 4]
# Adding space between label and
# axis by setting labelpad
plt.ylabel('Numbers label', labelpad = 50)
plt.plot(x, y)
输出:
示例#3:
import matplotlib.pyplot as plt
x =['Geeks', 'for', 'geeks', 'tutorials']
y =[1, 2, 3, 4]
# Setting font dictionary
font = {'family': 'Verdana',
'color': 'green',
'size': 20,
}
# Adding the font styles to the label
plt.ylabel('Numbers label', fontdict = font)
plt.plot(x, y)
输出:
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。