2012-05-20 187 views
0

我得到一个简单的熊猫时间序列浮点错误。我试图做移位操作...但是这也发生在窗口函数中,例如rolling_mean熊猫FloatingPoint错误

编辑:对于一些更多的信息.​​..我试图在错误之前从源头实际构建这个。我不确定错误是否会在构建尝试之前发生,因为我从来没有在这些函数中混淆过。编辑2:我想我已经解决了这个问题,但是当我在python中运行它时,它工作正常,但是当它在ipython中出现错误时。

EDIT3:numpy的1.7.0,IPython的0.13,熊猫0.7.3

In [35]: ts = Series(np.arange(12), index=DateRange('1/1/2000', periods=12, freq='T')) 

In [36]: ts.shift(0) 
Out[36]: 
2000-01-03  0 
2000-01-04  1 
2000-01-05  2 
2000-01-06  3 
2000-01-07  4 
2000-01-10  5 
2000-01-11  6 
2000-01-12  7 
2000-01-13  8 
2000-01-14  9 
2000-01-17 10 
2000-01-18 11 

In [37]: ts.shift(1) 
Out[37]: --------------------------------------------------------------------------- 
FloatingPointError      Traceback (most recent call last) 
/Users/trenthauck/Repository/work/SQS/analysis/campaign/tv2/data/<ipython-input-37-2b7cec97d440> in <module>() 
----> 1 ts.shift(1) 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/displayhook.pyc in __call__(self, result) 
    236    self.start_displayhook() 
    237    self.write_output_prompt() 
--> 238    format_dict = self.compute_format_data(result) 
    239    self.write_format_data(format_dict) 
    240    self.update_user_ns(result) 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/displayhook.pyc in compute_format_data(self, result) 
    148    MIME type representation of the object. 
    149   """ 
--> 150   return self.shell.display_formatter.format(result) 
    151 
    152  def write_format_data(self, format_dict): 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/formatters.pyc in format(self, obj, include, exclude) 
    124      continue 
    125    try: 
--> 126     data = formatter(obj) 
    127    except: 
    128     # FIXME: log the exception 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/formatters.pyc in __call__(self, obj) 
    445     type_pprinters=self.type_printers, 
    446     deferred_pprinters=self.deferred_printers) 
--> 447    printer.pretty(obj) 
    448    printer.flush() 
    449    return stream.getvalue() 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/lib/pretty.pyc in pretty(self, obj) 
    353     if callable(obj_class._repr_pretty_): 
    354      return obj_class._repr_pretty_(obj, self, cycle) 
--> 355    return _default_pprint(obj, self, cycle) 
    356   finally: 
    357    self.end_group() 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/lib/pretty.pyc in _default_pprint(obj, p, cycle) 
    473  if getattr(klass, '__repr__', None) not in _baseclass_reprs: 
    474   # A user-provided repr. 
--> 475   p.text(repr(obj)) 
    476   return 
    477  p.begin_group(1, '<') 

/Library/Python/2.7/site-packages/pandas/core/series.pyc in __repr__(self) 
    696    result = self._get_repr(print_header=True, 
    697          length=len(self) > 50, 
--> 698          name=True) 
    699   else: 
    700    result = '%s' % ndarray.__repr__(self) 

/Library/Python/2.7/site-packages/pandas/core/series.pyc in _get_repr(self, name, print_header, length, na_rep, float_format) 
    756           length=length, na_rep=na_rep, 
    757           float_format=float_format) 
--> 758   return formatter.to_string() 
    759 
    760  def __str__(self): 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in to_string(self) 
    99 
    100   fmt_index, have_header = self._get_formatted_index() 
--> 101   fmt_values = self._get_formatted_values() 
    102 
    103   maxlen = max(len(x) for x in fmt_index) 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in _get_formatted_values(self) 
    90   return format_array(self.series.values, None, 
    91        float_format=self.float_format, 
---> 92        na_rep=self.na_rep) 
    93 
    94  def to_string(self): 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in format_array(values, formatter, float_format, na_rep, digits, space, justify) 
    431       justify=justify) 
    432 
--> 433  return fmt_obj.get_result() 
    434 
    435 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in get_result(self) 
    528 
    529    # this is pretty arbitrary for now 
--> 530    has_large_values = (np.abs(self.values) > 1e8).any() 
    531 
    532    if too_long and has_large_values: 

FloatingPointError: invalid value encountered in absolute 

In [38]: ts.shift(-1) 
Out[38]: --------------------------------------------------------------------------- 
FloatingPointError      Traceback (most recent call last) 
/Users/myusername/Repository/work/SQS/analysis/campaign/tv2/data/<ipython-input-38-314ec815a7c5> in <module>() 
----> 1 ts.shift(-1) 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/displayhook.pyc in __call__(self, result) 
    236    self.start_displayhook() 
    237    self.write_output_prompt() 
--> 238    format_dict = self.compute_format_data(result) 
    239    self.write_format_data(format_dict) 
    240    self.update_user_ns(result) 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/displayhook.pyc in compute_format_data(self, result) 
    148    MIME type representation of the object. 
    149   """ 
--> 150   return self.shell.display_formatter.format(result) 
    151 
    152  def write_format_data(self, format_dict): 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/formatters.pyc in format(self, obj, include, exclude) 
    124      continue 
    125    try: 
--> 126     data = formatter(obj) 
    127    except: 
    128     # FIXME: log the exception 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/core/formatters.pyc in __call__(self, obj) 
    445     type_pprinters=self.type_printers, 
    446     deferred_pprinters=self.deferred_printers) 
--> 447    printer.pretty(obj) 
    448    printer.flush() 
    449    return stream.getvalue() 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/lib/pretty.pyc in pretty(self, obj) 
    353     if callable(obj_class._repr_pretty_): 
    354      return obj_class._repr_pretty_(obj, self, cycle) 
--> 355    return _default_pprint(obj, self, cycle) 
    356   finally: 
    357    self.end_group() 

/Library/Python/2.7/site-packages/ipython-0.13.dev-py2.7.egg/IPython/lib/pretty.pyc in _default_pprint(obj, p, cycle) 
    473  if getattr(klass, '__repr__', None) not in _baseclass_reprs: 
    474   # A user-provided repr. 
--> 475   p.text(repr(obj)) 
    476   return 
    477  p.begin_group(1, '<') 

/Library/Python/2.7/site-packages/pandas/core/series.pyc in __repr__(self) 
    696    result = self._get_repr(print_header=True, 
    697          length=len(self) > 50, 
--> 698          name=True) 
    699   else: 
    700    result = '%s' % ndarray.__repr__(self) 

/Library/Python/2.7/site-packages/pandas/core/series.pyc in _get_repr(self, name, print_header, length, na_rep, float_format) 
    756           length=length, na_rep=na_rep, 
    757           float_format=float_format) 
--> 758   return formatter.to_string() 
    759 
    760  def __str__(self): 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in to_string(self) 
    99 
    100   fmt_index, have_header = self._get_formatted_index() 
--> 101   fmt_values = self._get_formatted_values() 
    102 
    103   maxlen = max(len(x) for x in fmt_index) 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in _get_formatted_values(self) 
    90   return format_array(self.series.values, None, 
    91        float_format=self.float_format, 
---> 92        na_rep=self.na_rep) 
    93 
    94  def to_string(self): 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in format_array(values, formatter, float_format, na_rep, digits, space, justify) 
    431       justify=justify) 
    432 
--> 433  return fmt_obj.get_result() 
    434 
    435 

/Library/Python/2.7/site-packages/pandas/core/format.pyc in get_result(self) 
    528 
    529    # this is pretty arbitrary for now 
--> 530    has_large_values = (np.abs(self.values) > 1e8).any() 
    531 
    532    if too_long and has_large_values: 

FloatingPointError: invalid value encountered in absolute 
+0

适合我。 Python 2.7.3,pandas 0.7.0 – Avaris

+0

谢谢 - 你在ipython或python中试过吗? – tshauck

+0

什么版本的NumPy? –

回答

1

我想补充一点的评论,但我没有权限做到这一点尚未:)

它适用于python和iPython 0.12; iPython 0.13仍在开发中(请参阅http://ipython.org/),并且由于您收到的错误似乎涉及iPython 0.13格式的格式化,我怀疑这可能是原因。尝试用iPython 0.12代替 - 如果它工作正常,请用iPython提交错误报告,然后可能坚持0.12,直到0.13(更稳定)。

+0

感谢您的回复,我仍然收到0.12的错误。所以它似乎在我的系统中更普遍。奇怪的工作在bpython。 – tshauck

+0

嗯。只是一个刺,但是,如果您在iPython中尝试np.abs([np.nan,1,2,3]),会发生什么? – Karmel

+0

好的......引发同样的错误。 – tshauck