Can PYSR handle some time-series operators? #753
tiandiao123
started this conversation in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, I am wondering whether PYSR can handle time-series operators?
for example:
'''
Time-based Operators
def skew(series, t):
"""
Skewness of the series over the past t periods.
"""
t = int(t)
if t <= 0:
raise ValueError("Rolling window size must be a positive integer.")
'''
Beta Was this translation helpful? Give feedback.
All reactions