Forum Discussion
R Script Visuals Stopped Working
- Anonymous10 months ago
Hi econconsultant ,
Thanks for reaching out to the Microsoft fabric community forum.
Please cross check these points:
1) Publish to web isn't supported for R visuals. Reports with R visuals can still be published publicly, but any R visuals will not render (charts will appear empty).
2) Supported Current R runtime is R 4.3.3 for Power BI Service, make sure your report is using the supported version only.
3) R visuals require a Power BI Pro or Premium Per User (PPU) license to render in reports, refresh, filter, and cross-filter. Users of free Power BI can consume only reports that are shared with them in Premium workspaces.The following table describes R visuals capabilities based on licensing.
I hope this information helps. Please do let us know if you have any further queries.
Thank you
Based on the error it says an unsupported visual for rendering. Could it possibly be that you updated your R visuals when you updated the report and that has now stopped your power BI report from rendering?
Here is a list of supported visuals and their version: Learn which R packages are supported - Power BI | Microsoft Learn
- econconsultant10 months agoNew Member
It has to be something unrelated to the code. The most basic of an R plot does not even work. The code below (which is probably the most basic plot anyone can do in R) works in the desktop version of Power BI but not the SharePoint version. Hence, I suspect something is messing up in the server.
dataset$count <- as.numeric(dataset$r_outcome)plot(dataset$count)