给定[1,2,3,4,5,6,7,8,9,10]
,一次获得3个项目的滑动窗口:
[(1, 2, 3), (2, 3, 4), (3, 4, 5), (4, 5, 6), (5, 6, 7), (6, 7, 8), (7, 8, 9), (8, 9, 10)]
从https://stackoverflow.com/q/42220614/610569开始,可以通过以下方式实现序列的滑动窗口:
def per_window(sequence, n=1):
"""
Returns a sliding window.
From https://stackoverflow.com/q/42220614/610569
>>> list(per_window([1,2,3,4], n=2))
[(1, 2), (2, 3), (3, 4)]
>>> list(per_window([1,2,3,4], n=3))
[(1, 2, 3), (2, 3, 4)]
"""
start, stop = 0, n
seq = list(sequence)
while stop <= len(seq):
yield tuple(seq[start:stop])
start += 1
stop += 1
但是如果我想在滑动窗口中放置一些约束,我只想获得某个元素存在的窗口。
让我们说我只想要包含4的窗口,我可以这样:
>>> [window for window in per_window(x, 3) if 4 in window]
[((2, 3, 4), (3, 4, 5), (4,5,6)]
但不知何故,循环仍然需要处理整个窗口列表并检查if条件。
我可以通过查找4
的位置进行一些跳过,并将输入限制为per_window
,例如
# Input sequence.
x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
# Window size.
n = 3
# Constraint.
c = 4
# Set the index to 0
i = 0
while i < len(x)-n:
i = x.index(4, i)
# First window where the constraint is met.
left = i - (n-1)
if left > 0:
print (list(per_window(x[left:i], 3)))
right = i + n
if right < len(x):
print (list(per_window(x[i:right], 3)))
i = right
(请注意上面的代码,ifs不要工作=()
除了在per_window
函数之外找到索引之外,还有另一种方法可以在per_window
函数中添加这样的约束吗?
阅读@ RaymondHettinger的回答:
def skipping_window(sequence, target, n=3):
"""
Return a sliding window with a constraint to check that
target is inside the window.
From https://stackoverflow.com/q/43626525/610569
"""
start, stop = 0, n
seq = list(sequence)
while stop <= len(seq):
subseq = seq[start:stop]
if target in subseq:
yield tuple(seq[start:stop])
start += 1
stop += 1
# Fast forwarding the start.
# Find the next window which contains the target.
try:
# `seq.index(target, start) - (n-1)` would be the next
# window where the constraint is met.
start = max(seq.index(target, start) - (n-1), start)
stop = start + n
except ValueError:
break
[OUT]:
>>> x = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
>>> list(skipping_window(x, 4, 3))
[(2, 3, 4), (3, 4, 5), (4, 5, 6)]
答案 0 :(得分:3)
有没有另外一种方法在per_window函数中添加这样的约束,而不是在per_window函数之外找到索引?
是的,您可以在收益率之前添加条件:
def per_window(sequence, target, n=1):
start, stop = 0, n
seq = list(sequence)
while stop <= len(seq):
subseq = seq[start:stop]
if target in subseq:
yield tuple(subseq)
start += 1
stop += 1