我是新手NumPy
,我正在尝试计算一些简单的统计数据,例如median
或stddev
.
我想探索的“列”之一是时间差(作为类型的timedelta64
NumPy
类型),但我不能ufuncs
直接应用这些统计数据:
----> 1 age_request.std()
TypeError: ufunc 'divide' not supported for the input types, and the inputs could not be
safely coerced to any supported types according to the casting rule 'safe'
为什么会这样?
我知道我应该调查一下Pandas
,但首先我想熟悉一下NumPy
。