Python + GNU Plot:处理缺失值

时间:2011-02-01 02:49:17

标签: python gnuplot

为了清楚起见,我已经解决了我的问题并使用了一个小而完整的代码片段来描述它。

我有一堆数据,但有很多缺失的部分。我想忽略这些(如果它是一个折线图,则在图中中断)。我已经设定 ”?”成为缺失数据的符号。这是我的片段:

import math
import Gnuplot

gp = Gnuplot.Gnuplot(persist=1)
gp("set datafile missing '?'")

x = range(1000)

y = [math.sin(a) + math.cos(a) + math.tan(a) for a in x]

# Force a piece of missing data
y[4] = '?'

data = Gnuplot.Data(x, y, title='Plotting from Python')
gp.plot(data);

gp.hardcopy(filename="pyplot.png",terminal="png")

但它不起作用:

> python missing_test.py
Traceback (most recent call last):
  File "missing_test.py", line 8, in <module>
    data = Gnuplot.Data(x, y, title='Plotting from Python')
  File "/usr/lib/python2.6/dist-packages/Gnuplot/PlotItems.py", line 560, in Data
    data = utils.float_array(data)
  File "/usr/lib/python2.6/dist-packages/Gnuplot/utils.py", line 33, in float_array
    return numpy.asarray(m, numpy.float32)
  File "/usr/lib/python2.6/dist-packages/numpy/core/numeric.py", line 230, in asarray
    return array(a, dtype, copy=False, order=order)
ValueError: setting an array element with a sequence.

出了什么问题?

1 个答案:

答案 0 :(得分:4)

Gnuplot正在调用numpy.asarray将您的Python列表转换为numpy数组。 不幸的是,这个命令(dtype=numpy.float32)与包含字符串的Python列表不兼容。

您可以像这样重现错误:

In [36]: np.asarray(['?',1.0,2.0],np.float32)
---------------------------------------------------------------------------
ValueError                                Traceback (most recent call last)

/usr/lib/python2.6/dist-packages/numpy/core/numeric.pyc in asarray(a, dtype, order)
    228 
    229     """
--> 230     return array(a, dtype, copy=False, order=order)
    231 
    232 def asanyarray(a, dtype=None, order=None):

ValueError: setting an array element with a sequence.

此外,Gnuplot python module (version 1.7) docs

  
      
  • 没有规定数组数据中缺少数据点(其中   gnuplot允许通过'set missing'命令)。
  •   

我不确定这是否已在1.8版本中修复。

你和gnuplot结婚了吗? Have you tried matplotlib