The ultimate Fabric, Power BI, SQL, and AI community-led learning event. Save €200 with code FABCOMM.
Get registeredEnhance your career with this limited time 50% discount on Fabric and Power BI exams. Ends August 31st. Request your voucher.
I am using R Scripting to output the results to a table. The following script, will produce a plot; however, I tried to output to a dataframe and I am not coding properly. Thank you in advance for assistance.
library(forecast)
library(tseries)
Adobe_Arima = ts(dataset$Revenue, start=2014,frequency = 12)
Adobe_Forecast = auto.arima(Adobe_Arima, seasonal=TRUE)
Predicted_Forecast = forecast(Adobe_Forecast,h=10)
plot(Predicted_Forecast)