Forum Discussion
rohuyn
9 years agoFrequent Visitor
Dynamic R Forecasting Data
Hi everyone, I was able to get my Forecasting in R to work correctly, and can now dynamically update it using slicers. What I cannot do, however, is explicitly see what my forecasted values and i...
ankitpatira
9 years agoCommunity Champion
rohuyn I don't think you will be able to see that in the data view in power bi itself but how about at the end of your R script use write.csv method that outputs dataset to csv. Try that out, I have never had done this before though.
write.csv(yourDataFrame, file = "C:/MyData.csv")
rohuyn
9 years agoFrequent Visitor
Appreciate the response, ankitpatira! Unfortunately, while your solution is passable for myself, it wouldn't be utilized well upon scale in my organization.
With that being said, I'm curious if anyone else has outputted this data onto Power BI in any other format, or if the R Dev Team has considered adding this functionality.