I'm trying to calculate a predicted value backwards. I have the following for the true values.
The reason for going backwards is to show the predicted visitors in absolute numbers
- visitors__t-1 = 7715
- visitors__t = 11680
- logvisitors_t = ln(visitors__t + 1000.)
- logvisitors_t = 9.447781228
- lvisitors__t-1 = ln(visitors__t-1 + 1000)
- lvisitors__t-1 = 9.072800958
- y = lvisitors_t - 0.400*lvisitors__t-1
- y = 5.818660845
The reason for going backwards is to show the predicted visitors in absolute numbers