Made forecast.lm() always generate trend+season into data
Fixes issue when functions of trend and season are used, without using trend and season as variables themselves. For example: ```R fit <- tslm(AirPassengers~poly(trend,3)+season) forecast(fit, h=12) ``` Would error on not finding trend.
Loading
Please sign in to comment