gpt4 book ai didi

python - 使用 Pandas 创建分布不均的事件

转载 作者:行者123 更新时间:2023-12-01 05:04:08 25 4
gpt4 key购买 nike

是否可以使用 Pandas 生成分布不均匀的基于时间的事件?我目前正在使用这个,但我试图改变这些事件在整个系列中分布的均匀程度。

rng = date_range('1/1/2011', periods=60*3, freq='S')
ts = Series(0, index=rng)

最佳答案

这是一些基于评论中讨论的示例代码。您可以将“0.50”设置为要保留的任意百分比。

import numpy as np
ts = Series( np.random.uniform(0,1,180), index=rng)
ts[ ts < 0.50 ].dropna()

2011-01-01 00:00:00 0.283262
2011-01-01 00:00:01 0.200472
2011-01-01 00:00:04 0.077024
2011-01-01 00:00:06 0.041452

关于python - 使用 Pandas 创建分布不均的事件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25417713/

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