我有一个TimeSeries
整数,我想使用resample()
. 问题是我有一些缺失数据的时期被转换为NaN
. 由于 pandas 不支持Integer NA 值,因此整数将转换为浮点数。
是否可以像我一样TimeSeries
使用 a对丢失的数据进行重新采样?我不希望我的整数转换成浮点数。fill_value
reindex(fill_value=0)
>>> dates = (datetime(2013, 1, 1), datetime(2013,1,2), datetime(2013,3,1))
>>> s = Series([1,2,4],index=dates)
>>> s
2013-01-01 1
2013-01-02 2
2013-03-01 4
dtype: int64
>>> s.resample('M', how='sum')
2013-01-31 3
2013-02-28 NaN
2013-03-31 4
Freq: M, dtype: float64
# Desired output (doesn't work)
>>> s.resample('M', how='sum', fill_value=0)
2013-01-31 3
2013-02-28 0
2013-03-31 4
Freq: M, dtype: int64