Yesterday we saw a beautiful example of panel charts with R. Today let me show you how to create the same (or even better) with Power BI & R.

What you need:
- Power BI Desktop and R
- Raw data set – rem-data.csv
Creating Panel Charts in Power BI with R
- Load CSV data in to Power BI
- Edit the query in so we can transform the data in to Pivot shape in Power Query
- Apply below steps in Power Query
- Group data by Group and Branch with aggregations on count (named Branch Count) and All rows (named Ratings)

- We get a totals by group and branch level.
- Expand Ratings table and show only Ratings column
- This creates a table with all group, branch and rating combinations along with branch total
- Group again, this time on Group, Branch, Branch total and Ratings with aggregation on count.

- Calculate count as percent of Branch count
- Format the percentage as percent
- Close and apply to Load this data in to Power BI
- Group data by Group and Branch with aggregations on count (named Branch Count) and All rows (named Ratings)
- Insert R script visualization
- Add Group, Branch, Ratings and Pct to values area. This creates a dataframe with all 4 columns.
- Add below R script and your visualization is ready.
library(tidyverse)
ggplot(data=dataset) +
geom_bar(aes(x=Rating, y=Pct), stat="identity")+
scale_x_discrete(limits = c("NME","AME","SP","OP","NR"))+
facet_wrap(~Branch, nrow=1)+
theme(strip.text.x = element_text(size = 8))
To run the R script, simply press play button in R script editor pane.
Enhancing your visualization – Adding a slicer on Group
This creates a truly powerful interactive panel chart in Power BI. Simply add Group as a slicer and play with it. Every time you select a new Group, Power BI runs the R script with filtered data fed to the dataframe. There is a second or two lag, but the wait is totally worth it. 🙂
Creating Interactive Panel charts in Power BI with R – Video tut
Here is a video outlining the entire process along with some tips on how to use R in Power BI. Check it out below or on Chandoo.org YouTube channel.
Download Power BI workbook
Click here to download Power BI workbook for this. You may need to adjust the data source settings. Play with the slicer to refresh the R panel charts.
Have you tried Power BI yet?
I am playing with Power BI for last year or so and I am in love. You are going to hear more about it on Chandoo.org for sure.
What about you? Have you played with Power BI yet? What are your thoughts?
Related: Introduction to Power Query.

















9 Responses to “Show forecast values in a different color with this simple trick [charting]”
While this works in a pinch, it clearly "lightens" the colors of the entire chart. Depending on where you use this, it will be blatantly obvious that you don't know what you are doing and present a poor looking graph.
Why not separate the data into different segments when charting and have as many colors as you have data points? You might have to create a new legend and/or repeat the chart in "invisible ink", but it would be cleaner and more consistent when new or updated data becomes available.
While I think I agree that doing it "properly" via a second series is preferable, I don't necessarily agree that making the entirety of the "future" (data, gridlines, and even the axis) semi-transparent is "poor looking". I think it could be seen as adding more emphasis to the "future-ness" of the forecast data.
In short, it's another tool for the toolbox, even if it's never needed.
Simply and clever 🙂
Quick & effective, cool. thanks.
I always use the dummy series.
Nice little trick, thanks very much!
Two sets of data better. Control is much better.
You can use the same chart next month to see what is actual and what is forecast.
To use this trick, I think grid lines has to be removed, that will make the graphic much more sharp.
to be honest, i dont understand why there is needed to do this way... in this case horizontal lines will be pale as well. then why a just can't change the color of the line partly???
Great tutorial. Thanks for the tutorial!