Closed thunfischtoast closed 5 years ago
See this example code:
library(smooth) sma(c(1:10), order = 5) # works model <- "Hello!" sma(c(1:10), order = 5) # fails a <- c(1:10) b <- c(1:10) model <- lm(a ~ b) sma(c(1:10), order = 5) # fails, but with another error
Thanks! This is now fixed in smooth v2.4.8.41001: a71ef8faf9cf42d462006d8ebb3c2ba0c65e3fdc
See this example code: