I have a question regarding scikit-learn. I would like to know if it is possible to tell scikit-learn to use moving average values
as my label values?
I have historic data like: team1,team2, run_distance1, run_distance2
and would like to use the mean of the last 3 run_distance1
as the current value. Does sci-kit have this kind of feature?
The idea behind this is to predict the current match of team1
and team2
by using the historic data trained on moving average values (mean)
of the last 3 or X games.
Thank you very much!