2012-05-20 186 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