Forum Discussion

shantanugupta's avatar
shantanugupta
Frequent Visitor
5 years ago

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"))
install.packages("tidyverse", repos = "https://cran.r-project.org/")
if (!require("ggplot2"))
install.packages("ggplot2", repos = "https://cran.r-project.org/")
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")