This message was deleted.
# general
s
This message was deleted.
f
Hi @Ada Canaydin! Thanks for using
tsfeatures
. :D The argument
features
receives a list of functions, so it is necessary to import
acf_features
. Also, the
freq
argument should be an integer instead of a string. Since you are using
30T
data,
freq=48
might be a good option (to reflect daily seasonality). With these changes the code would be,
Copy code
from tsfeatures import acf_features

tsfeatures(panel, freq=48, features=[acf_features])
Please let me know if you have any other questions. Happy to help. :)
a
Thank you so much Fede! It works now :)
🙌 2