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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
bahramzahir
New Member

Rendering a plot created by R in "dgr_graph" format

Hi,

 

I have created a plot in R, using the bupaR package, which renders beautifully in RStudio, but not in PowerBI. When trying it in PowerBI, it acts as if the plot has not been created.

 

Anyone can let me know how I can debug this issue?

 

Bests

BZ

2 REPLIES 2
TomMartens
Super User
Super User

Hey,

 

I'm wondering if you are aware of this site:

https://docs.microsoft.com/en-us/power-bi/desktop-r-visuals

 

Please check the link above, if you need more help, please describe what you have done in Power BI Desktop, and what is not working.

 

Make sure that you install the library that you are using in the r-script using 

library("nameofthepackage")

You also have to be aware, that not all R packages that you can use with Power BI Desktop are not supported in Power BI Service, here you will find a list of the R packages that are supported by the Power BI Service.

 

Regards,

Tom

 



Did I answer your question? Mark my post as a solution, this will help others!

Proud to be a Super User!
I accept Kudos 😉
Hamburg, Germany

Thanks @TomMartensfor your reply.

 

Here is the sample code: 

 

library(DiagrammeR)
create_graph() %>%
  add_balanced_tree(
    k = 2, h = 3) %>%
  render_graph()
 
This works well in RStudio, but generates an error in PBI.
 
Same is true if we do it the more simple way:
 
x <- create_graph()
y <- add_balanced_tree(x, k = 2, h = 3)
render_graph(y)
 
And the class of x and y here is "dgr_graph". So my conclusion here is that PowerBI does not let the render_graph does its job correctly on this type of variables. But I may miss something here.

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

November Carousel

Fabric Community Update - November 2024

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

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.