I'm new in R and ST kriging, I've constructed a STFDF object with the first 4 hours historical data, and want to forecast the fifth hour data. By using krigeST in R, I've constructed vgm model. But after launching:
pred = krigeST(formula=values~1, data=my_stfdf, newdata = my_pred, modelList=my_Vgm)
everything works fine, but the pred object only contains historical data, without prediction data. Any idea? Thank you in advance.