编辑情节 - 蟒蛇

时间:2016-06-08 16:38:35

标签: python plot

您好我有一个代码,用于绘制.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()

1 个答案:

答案 0 :(得分:1)

我假设你想把它们添加到情节中。

您可以添加标题:

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