0

我在绘制图形时遇到了一些麻烦。我有一个文件,其中包含一些由我用 c++ 编写的应用程序计算的结果,我想为计算数据绘制图形。

问题是我不知道 X 轴和 Y 轴上的“最大”和“最小”限制......

我试过:

# -*- coding: utf-8 -*-
#!/usr/bin/env python

import matplotlib
matplotlib.use("Agg")
import matplotlib.pyplot as plt

def plot_it(ox, oy, x_label, y_label, filename) :

    fig = plt.figure()
    axis = fig.add_subplot(111)
    plt.xlabel(x_label)
    plt.ylabel(y_label)
    plt.ylim(min(oy),max(oy))
    plt.xlim(min(ox),max(ox))
    axis.plot(ox, oy, color = 'red')
    plt.savefig(filename)
    plt.clf()
    plt.close()

filename = input("Filename (file with data)\n>")
res = []
try :
    with open(filename, 'r') as file :
        for line in file :
            line = line.rstrip('\n')
            res.append(line.split(" "))
except IOError :
    print("IO error")

if len(res) != 0 :

    ox = []
    oy = []

    x_label = str(input("OX label\n>"))
    y_label = str(input("OY label\n>"))

    for i in range(0,len(res)) :
        ox.append(res[i][0])
        oy.append(res[i][1])

    plot_it(ox, oy, x_label, y_label, 'fig_' + str(filename[:len(filename)-4]) + '.png')

我的文件在这里: http: //pastie.org/private/4rl64ule9ymljmp6g5bfzg(只需复制并保存为file.txt)

我得到了这些错误:

回溯(最后一次调用):文件“E:/plotter.py”,第 43 行,在 plot_it(ox, oy, x_label, y_label, 'fig_' + str(filename[:len(filename)-4]) + '.png') 文件“E:/plotter.py”,第 14 行,在 plot_it plt.ylim(min(oy),max(oy)) 文件“C:\Python27\lib\site-packages\matplotlib\pyplot .py”,第 1252 行,在 ylim ret = ax.set_ylim(*args, **kwargs) 文件“C:\Python27\lib\site-packages\matplotlib\axes.py”,第 2642 行,在 set_ylim 底部,顶部= mtransforms.nonsingular(bottom, top, increase=False) 文件“C:\Python27\lib\site-packages\matplotlib\transforms.py”,第 2282 行,非单数 if (not np.isfinite(vmin)) 或 ( not np.isfinite(vmax)): NotImplementedError: 未为此类型实现

4

1 回答 1

3

添加:

plt.ylim(min(oy),max(oy))
plt.xlim(min(ox),max(ox))

对于您提供的第二个代码块,这会将您的 x 和限制设置为数据的最小值/最大值。

于 2012-06-08T11:08:47.990 回答