Matplotlib.axes.axes.get_yscale() - 以字符串的形式获得y轴刻度

Matplotlib.axes.axes.get_yscale()

Matplotlib是Python中的一个库,它是NumPy库的数值-数学扩展。Axes包含了大多数图形元素:Axis、Tick、Line2D、Text、Polygon等,并设置坐标系。Axes的实例通过callbacks属性支持回调。

函数:Matplotlib.axes.axes.get_yscale()

matplotlib库的Axes模块中的Axes.get_yscale()函数用于以字符串的形式获得y轴刻度。

语法:Axes.get_yscale(self)

参数:该方法不接受任何参数。

Return:该函数以字符串形式返回y轴刻度。

下面的例子演示了matplotlib.axes.axes.get_yscale()函数在matplotlib.axes中的作用:

示例1

# Implementation of matplotlib function
import matplotlib.pyplot as plt
import numpy as np
     
fig, ax = plt.subplots()
  
ax.plot([1, 2, 3])
  
w = ax.get_yscale()
  
ax.set_title("yscale property : "+ str(w),
             fontweight ="bold")
fig.suptitle('matplotlib.axes.Axes.get_yscale() \
function Example\n', fontweight ="bold")
fig.canvas.draw()
plt.show()

输出:

Matplotlib.axes.axes.get_yscale()

示例2

# Implementation of matplotlib function
import matplotlib.pyplot as plt
  
fig, ax = plt.subplots()
  
ax.set_yscale("log")
ax.set_adjustable("datalim")
ax.plot([1, 3, 10], [1, 9, 100], "o-", color ="green")
ax.set_ylim(1e-1, 1e3)
ax.set_aspect(1)
w = ax.get_yscale()
ax.set_title(str(w)+" is the yscale property",
             fontweight ="bold")
fig.suptitle('matplotlib.axes.Axes.get_yscale()\
 function Example\n', fontweight ="bold")
  
plt.show()

输出:

Matplotlib.axes.axes.get_yscale()

Python教程

Java教程

Web教程

数据库教程

图形图像教程

大数据教程

开发工具教程

计算机教程