0

pandasのドキュメントのコードサンプルを実行するとエラーが発生します。

使用しているパンダのバージョンに関係しているのではないかと思いますが、確認できていません。

pandas VERSION 0.10.1  
numpy VERSION 1.7.0  
scipy VERSION 0.12.0.dev-14b1e07  

以下の例は、パンダのドキュメントから直接引用したものです。

パンダ-タイムデルタ
これは機能します

from datetime import datetime, timedelta  
from pandas import *  

s  = Series(date_range('2012-1-1', periods=3, freq='D'))  
s  

Out[52]:  
0   2012-01-01 00:00:00  
1   2012-01-02 00:00:00  
2   2012-01-03 00:00:00  

これもそうです

td = Series([ timedelta(days=i) for i in range(3) ])  
td  
Out[53]:  
0            0:00:00  
1     1 day, 0:00:00  
2    2 days, 0:00:00  

df = DataFrame(dict(A = s, B = td))  
df  
Out[54]:  
                    A                B  
0 2012-01-01 00:00:00          0:00:00  
1 2012-01-02 00:00:00   1 day, 0:00:00  
2 2012-01-03 00:00:00  2 days, 0:00:00  

これは、ドキュメントによると期待される出力と一致しているようです。

サンプルコードの次の行でエラーが発生します。

df['C'] = df['A'] + df['B']  

..。

---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
<ipython-input-55-7057e174d79e> in <module>()
----> 1 df['C'] = df['A'] + df['B']

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/series.pyc in wrapper(self, other)
     91             if self.index.equals(other.index):
     92                 name = _maybe_match_name(self, other)
---> 93                 return Series(wrap_results(na_op(lvalues, rvalues)),
     94                               index=self.index, name=name)
     95 

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/series.pyc in na_op(x, y)
     63             if isinstance(y, np.ndarray):
     64                 mask = notnull(x) & notnull(y)
---> 65                 result[mask] = op(x[mask], y[mask])
     66             else:
     67                 mask = notnull(x)

TypeError: ufunc add cannot use operands with types dtype('<M8[ns]') and dtype('O')

データ型:

df.dtypes

Out[56]: 
A    datetime64[ns]
B            object

同様に、加算/減算を行うとエラーが発生します。

s - s.max()

<ipython-input-57-8d53e24db927> in <module>()
----> 1 s - s.max()

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/series.pyc in wrapper(self, other)
     78 
     79         if (com.is_datetime64_dtype(self) and
---> 80             com.is_datetime64_dtype(other)):
     81             lvalues = lvalues.view('i8')
     82             rvalues = rvalues.view('i8')

/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/site-packages/pandas/core/common.pyc in is_datetime64_dtype(arr_or_dtype)
   1003         tipo = arr_or_dtype.type
   1004     else:
-> 1005         tipo = arr_or_dtype.dtype.type
   1006     return issubclass(tipo, np.datetime64)
   1007 

AttributeError: 'Timestamp' object has no attribute 'dtype'

このコードは、簡単に参照できるように要点を示しています。

https://gist.github.com/hernamesbarbara/5061972

ヘルプや提案をありがとう。大変感謝しております。

-オースティン

4

2 に答える 2

1

リンクしているページのタイトル(ブラウザウィンドウの上部)を見ると、それがパンダの開発バージョンであることがわかります:http: //pandas.pydata.org/pandas-docs/dev/timeseries。 html#time-deltas

だから、今日、それはバージョンのためです

'0.11.0.dev-13ae597'

このコードは正常に機能しています。

安定版のドキュメントは次のとおりです。

http://pandas.pydata.org/pandas-docs/stable/

ブラウザウィンドウの上部に表示されます

pandas 0.10.1

これはあなたのバージョンです。

于 2013-03-01T02:21:36.817 に答える
0

Pythonのすべてのインスタンスを閉じて、すべてを再起動しようとしましたが、それでも機能しませんでした。
しかし、これは私にとってはうまくいきました。
パンダをアンインストールします

conda remove pandas 

また

pip uninstall pandas 

その後、再インストールします

conda install pandas

また

pip install pandas
于 2019-08-28T05:56:26.793 に答える