Forum Discussion
R Visuals in Web
I have plotted the forecasting using R Scripts. Now I am need to export the created visual to web. When I use publish to web, R visuals not appearing. How to achieve this.
- Anonymous9 years ago
HI 141507,
R visuals require a Power BI Pro license to render in reports, refresh, filter and cross-filter, please refer to the following document about R visuals capabilities based on licensing.
Reference link:
Regards,
Xiaoxin Sheng
8 Replies
- Greg_DecklerCommunity Champion
What R libraries are you using? Are they on the list?
https://powerbi.microsoft.com/en-us/documentation/powerbi-service-r-packages-support/
- AnonymousNot applicable
Hi 141507,
As smoupre said, I also think the issue may related to unsupported libraries.In addition, can you provide some detail contents to help us know more about your issue?
Regards,
Xiaoxin Sheng- 141507Helper I
Hi All,
Thank you for your response.
I am using packages of "forecast", "xts". I am plotting ARIMA visual using R code. Please let me know if there are any problems using these packages.
R Code:
library("xts")
library("forecast")
dates=as.Date(dataset$received_date,"%Y-%m-%d")
xs=xts(dataset$volume,dates)
plot(xs)
xi=ts(xs,start=c(2014,1),end=c(2016,12),frequency=12)
plot(xi)
fit <- auto.arima(xi,D=1)
plot(forecast(fit,h=12),xlab='Year', ylab = 'Volume')
Regards,
Senthil D
- AnonymousNot applicable
HI 141507,
Can you share some detailed information about these r visual? (For e.g. screenshots, error message...?
Regards,
Xiaoxin Sheng