gpt4 book ai didi

python - 如何使用没有孔的 TimeSeries 为 "holes"索引 DataFrame

转载 作者:太空宇宙 更新时间:2023-11-04 10:50:43 26 4
gpt4 key购买 nike

我有一个按这样的日期索引的 DataFrame:

<class 'pandas.core.frame.DataFrame'>
DatetimeIndex: 1853141 entries, 2012-03-01 00:00:00 to 2012-06-16 23:59:55
Data columns:
Open Bid ESM2 1853141 non-null values
Open Ask ESM2 1853141 non-null values
dtypes: float64(2)

索引的周期为 5 秒,但有一些“漏洞”,因此我创建了一个具有相同日期范围和周期且没有漏洞的 TimeSeries:

<class 'pandas.tseries.index.DatetimeIndex'>
[2012-03-01 00:00:00, ..., 2012-06-16 23:59:55]
Length: 1866240, Freq: 5S, Timezone: None

现在我想使用这个时间序列作为上面 DataFrame 的索引,其中的漏洞列为 NaN。我该怎么做

最佳答案

您可以使用 reindex()方法并传递您创建的填充索引。
默认的 fill_valueNaN

In [1]: ix1 = [0, 1, 2, 3, 4, 9]

In [2]: ix1
Out[2]: [0, 1, 2, 3, 4, 9]

In [3]: ix2 = range(10)

In [4]: ix2
Out[4]: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

In [5]: s = Series(ix1, index=ix1)

In [6]: s
Out[6]:
0 0
1 1
2 2
3 3
4 4
9 9

In [7]: s.reindex(ix2)
Out[7]:
0 0
1 1
2 2
3 3
4 4
5 NaN
6 NaN
7 NaN
8 NaN
9 9

In [8]: Series.reindex()?

Docstring:
Conform Series to new index with optional filling logic, placing
NA/NaN in locations having no value in the previous index. A new object
is produced unless the new index is equivalent to the current one and
copy=False

关于python - 如何使用没有孔的 TimeSeries 为 "holes"索引 DataFrame,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14125172/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com