plt.figure()是Python的matplotlib库中创建新图形的函数。这个函数可以接受几个可选参数来自定义图形的外观,比如大小和分辨率。例如:
import matplotlib.pyplot as plt
# Create a new figure with a width of 10 inches and a height of 5 inches
fig = plt.figure(figsize=(10, 5))
您还可以使用add_subplot()方法向图形添加子图(轴):
# Add a subplot to the figure
ax = fig.add_subplot(1, 1, 1)
你也可以使用支线剧情方法在一行中创建多个支线剧情:
fig, axs = plt.subplots(2, 2, figsize=(10, 5))
创建图形后,您可以使用各种绘图功能,如plot、scatter和hist,将数据添加到轴上并创建绘图:
ax.plot(x, y)
还可以使用axes对象的各种方法来自定义绘图的外观,如set_xlabel和set_title:
ax.set_xlabel('X Label')matplotlib中subplot
ax.set_title('Title')
您也可以使用plt.show()函数来显示该图

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。