I am new to machine learning and R. I want to run a statistical model to predict daily hours of supply of electricity (y). I have several x variables to use for prediction. I have three goals to achieve:
- I want to use some sort of regularization to choose the x variables that should go in the model.
- y is bounded between 0 and 24. So I want the predictions to also be bounded within this range.
- The data has spatial attributes and I want to use spatial cross-validation to re-sample while tuning regularization parameters.
I am planning to use the mlr
package in R. Which learner can I use that can achieve the above three goals?
Many thanks.