Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Earn the coveted Fabric Analytics Engineer certification. 100% off your exam for a limited time only!

Reply
Anonymous
Not applicable

R Script output to table

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)

  • Trying to output Predicted_Forecast as a table.
0 REPLIES 0

Helpful resources

Announcements
April AMA free

Microsoft Fabric AMA Livestream

Join us Tuesday, April 09, 9:00 – 10:00 AM PST for a live, expert-led Q&A session on all things Microsoft Fabric!

March Fabric Community Update

Fabric Community Update - March 2024

Find out what's new and trending in the Fabric Community.

Top Solution Authors