Forum Discussion
shantanugupta
5 years agoFrequent Visitor
Is it necessary to install R and R studio to view graphs in Power BI
Is it necessary to install R and R studio to view graphs in Power BI? One of the colleagues, whom I am sharing my Power BI report doesnot have R installed in that PC. It throws this error.
Is there any way we can see the R graphs in Power BI without installing R programming into the system. Or is it necessary to install R language into the system to view the all the graphs generated from R in Power BI?
Here is the code:
# The following code to create a dataframe and remove duplicated rows is always executed and acts as a preamble for your script:
# dataset <- data.frame(PrimResult, DupResult, Element)
# dataset <- unique(dataset)
# Paste or type your script code here:
if (!require("tidyverse"))
if (!require("ggplot2"))
library(ggplot2)
library(tidyverse)
#dataset[is.na(dataset)] = 0
#qqplot(my_data$PrimResult.Theoretical., my_data$DupResult.Practical.,
# )
## - QQplots in GGPlot2
dataset %>%
ggplot(aes(
theoretical = PrimResult,
sample = log(DupResult)
)) +
stat_qq() +
stat_qq_line() +
labs(title = "QQplots", caption = "X-axis logged") +
ylab("Theoretical") +
xlab("Calculated")
1 Reply
- MattAllingtonCommunity Champion
If you want R to work in Power BI desktop, you have to install it separately. https://exceleratorbi.com.au/extending-power-bi-r-visuals/
if you publish the report to powerbi.com, it will work without installing R in the desktop (mostly)