当前位置 : 主页 > 大数据 > 区块链 >

matplotlib(一) 介绍

来源:互联网 收集:自由互联 发布时间:2021-06-22
figure(图像) figure可以跟踪和定位所有的Axes. 一个figure可以有任意数量的Axes,但是至少有一个。 import matplotlib.pyplot as plt import numpy as np # ##用python创建figure对象最简单的方法 fig=plt.figure

  figure(图像)

  figure可以跟踪和定位所有的Axes.  一个figure可以有任意数量的Axes,但是至少有一个。

import matplotlib.pyplot as plt
import  numpy as np

#
##用python创建figure对象最简单的方法 fig=plt.figure() ###创建一个空白figure,不含Axes fig.suptitle("No Axes on this figure") fis,ax_lst=plt.subplots(2,2) ##在当前figure下创建4个Axes对象

  Axes(坐标系)

 

 

import matplotlib.pyplot as plt
import  numpy as np


fig=plt.figure()
plt.suptitle("No Axes on the figure")
fig,ax_lst=plt.subplots(2,2)
ax_lst[0][0].set_title("This is first axes")
ax_lst[0][0].set_xlabel("X")
ax_lst[0][0].set_ylabel("Y")

 

  执行结果如下:

  

    Axis(坐标轴)

  Axis关注图片的显示区域和生成刻度(ticks)以及刻度标签(tickslabel)。ticks的位置由Locator对象来控制,tickslabel的标签字符串由Famatter对象进行格式化。

网友评论