gpt4 book ai didi

python - 编辑情节 - python

转载 作者:太空宇宙 更新时间:2023-11-03 16:29:40 25 4
gpt4 key购买 nike

您好,我有一个代码可以从 .dat 文件中绘制 2D 数据(我将其称为 filename.dat,它只是一个包含 2 列数字的 .dat 文件)。它工作得很好,我只是有一些关于如何改进它的问题。

如何编辑代码以使轴标签更大并添加标题?按照我现在编写的方式编辑这段代码并不那么容易。我尝试将 fontsize,title 添加到plotfile(...) 命令中,但这不起作用。谢谢您的帮助!我的代码如下。

import numpy as np
import matplotlib.pyplot as plt

#unpack file data

dat_file = np.loadtxt("filename.dat",unpack=True)
plt.plotfile('filename.dat', delimiter=' ',cols=(0,1), names=('x','y'),marker='0')
plt.show()

最佳答案

我假设您想将它们添加到图中。

您可以添加标题:

plt.title("MyTitle")

然后将文本添加到图表中

# the following coordinates need to be determined with experimentation
# put them at a location and move them around if they are in
# the way of the graph
x = 5
y = 10
plt.text(x,y, "Your comment")

这可以帮助您设置字体大小:

How to change the font size on a matplotlib plot

关于python - 编辑情节 - python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37708232/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com