R Custom Visual for Power BI -Overview how to Set up

Опубликовано: 04 Октябрь 2024
на канале: RADACAD
3,482
25

This is the second part video of Creating Custom Visual using R and JSON for Power BI, in this video where we ale to set up the environment has been explained.
see the first video from:    • R Custom Visual for Power BI -Update ...  
also, the code is here
1- Open R Studio and install below packages
install.packages("ggplot2")
install.packages("plotly")
2- check the package availability
library(ggplot2)
library(plotly)
3- Values=mpg
g=ggplot(Values, aes(x=Values$cty, y=Values$hwy,colour = Values$cyl)) + geom_jitter(size=4)