Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有 *.txt 文件,现在我想获取数据内容并将其绘制在图表中。但是 *.png 必须是新创建的。
我不知道如何创建 png 文件,也不知道如何从 txt 中读取数据内容并将其放入最终图表的 png 文件中。
有什么建议么?
你需要这些包numpy和matplotlib
numpy
matplotlib
import nunmpy as np import matplotlib.pyplot as plt data=np.loadtxt("YourFileName.txt", dtype="YourDataType", delimiter=",") plt.plot(data) plt.show() #if you want to see the plot plt.savefig("PngFile.png")
完毕。
如果您需要从数据中绘制类似图表的图表,请考虑使用graphviz。
如果您有要转换为 ASCII 艺术图,请.png考虑使用ditaa。
.png
如果您想使用一些数据创建任意 png,请考虑使用PIL。