Forum Discussion

bahramzahir's avatar
bahramzahir
New Member
7 years ago

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

  • 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

     

    • bahramzahir's avatar
      bahramzahir
      New Member

      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.