我有一个熊猫时间序列数据框。df
日期是索引。三列,cusip,ticker,factor。
我想按日期对数据进行十分位数。每个日期大约 100 个因子...每个日期将被分为 1 到 10。
作为第一次尝试,无论日期如何,我都尝试对整个数据框进行十等分。我用了:
factor = pd.cut(df.factor, 10) #This gave an error:
adj = (mx - mn) * 0.001 # 0.1% of the range
Sybase.Error: ('Layer: 2, Origin: 4\ncs_calc: cslib user api layer: common library error: The conversion/operation results in overflow.')
数据框有 1mm 行。是尺寸问题吗?一个南问题?
三个问题。
- 当前功能有什么问题?
- 如何获取列中 nan 的数量?
- 有什么关于按日期分类的建议吗?
感谢您的帮助。熊猫 python 新手。
样本数据:
df: cusip ticker factor
date
2012-01-05 XXXXX ABC 4.26
2012-01-05 YYYYY BCD -1.25
...(100 more stocks on this date)
2012-01-06 XXXXX ABC 3.25
2012-01-06 YYYYY BCD -1.55
...(100 more stocks on this date)
我想要的输出:
#column with the deciles, lined up with the df.
decile
10
2
...
10
3
...
然后我可以将它附加到我的数据框以拥有一个新列。每个日期都是十分位的,然后每个数据点在该日期都有相应的十分位。谢谢。
堆栈跟踪:
Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/misc/apps/linux/python-2.6.1/lib/python2.6/site-packages/pandas-0.10.0-py2.6-linux-x86_64.egg/pandas/core/groupby.py", line 1817, in transform res = wrapper(group)
File "/misc/apps/linux/python-2.6.1/lib/python2.6/site-packages/pandas-0.10.0-py2.6-linux-x86_64.egg/pandas/core/groupby.py", line 1807, in <lambda> wrapper = lambda x: func(x, *args, **kwargs) File "<stdin>", line 1, in <lambda> File "/misc/apps/linux/python-2.6.1/lib/python2.6/site-packages/pandas-0.10.0-py2.6-linux-x86_64.egg/pandas/tools/tile.py", line 138, in qcut bins = algos.quantile(x, quantiles)
File "/misc/apps/linux/python-2.6.1/lib/python2.6/site-packages/pandas-0.10.0-py2.6-linux-x86_64.egg/pandas/core/algorithms.py", line 272, in quantile return algos.arrmap_float64(q, _get_score) File "generated.pyx", line 1841, in pandas.algos.arrmap_float64 (pandas/algos.c:71156) File "/misc/apps/linux/python-2.6.1/lib/python2.6/site-packages/pandas-0.10.0-py2.6-linux-x86_64.egg/pandas/core/algorithms.py", line 257, in _get_score idx % 1)
File "/misc/apps/linux/python-2.6.1/lib/python2.6/site-packages/pandas-0.10.0-py2.6-linux-x86_64.egg/pandas/core/algorithms.py", line 279, in _interpolate return a + (b - a) * fraction File "build/bdist.linux-x86_64/egg/Sybase.py", line 246, in _cslib_cb Sybase.Error: ('Layer: 2, Origin: 4\ncs_calc: cslib user api layer: common library error: The conversion/operation resulted in overflow.', <ClientMsgType object at 0x1c4da730>)