fbpx
Search
Close this search box.

Employee Performance Panel Charts in Power BI with R

Share

Facebook
Twitter
LinkedIn

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.

interactive-panel-chart-power-bi-with-r

What you need:

Creating Panel Charts in Power BI with R

  1. Load CSV data in to Power BI
  2. Edit the query in so we can transform the data in to Pivot shape in Power Query
  3. Apply below steps in Power Query
    • Group data by Group and Branch with aggregations on count (named Branch Count) and All rows (named Ratings)grouping-by-group-and-branch
    • 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.grouping-again-by-group-branch-rating
    • Calculate count as percent of Branch count
    • Format the percentage as percent
    • Close and apply to Load this data in to Power BI
  4. Insert R script visualization
  5. Add Group, Branch, Ratings and Pct to values area. This creates a dataframe with all 4 columns.
  6. 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.

 

Facebook
Twitter
LinkedIn

Share this tip with your colleagues

Excel and Power BI tips - Chandoo.org Newsletter

Get FREE Excel + Power BI Tips

Simple, fun and useful emails, once per week.

Learn & be awesome.

Welcome to Chandoo.org

Thank you so much for visiting. My aim is to make you awesome in Excel & Power BI. I do this by sharing videos, tips, examples and downloads on this website. There are more than 1,000 pages with all things Excel, Power BI, Dashboards & VBA here. Go ahead and spend few minutes to be AWESOME.

Read my storyFREE Excel tips book

Excel School made me great at work.
5/5

– Brenda

Excel formula list - 100+ examples and howto guide for you

From simple to complex, there is a formula for every occasion. Check out the list now.

Calendars, invoices, trackers and much more. All free, fun and fantastic.

Advanced Pivot Table tricks

Power Query, Data model, DAX, Filters, Slicers, Conditional formats and beautiful charts. It's all here.

Still on fence about Power BI? In this getting started guide, learn what is Power BI, how to get it and how to create your first report from scratch.

Weighted Average in Excel with Percentage Weights

Weighted Average in Excel [Formulas]

Learn how to calculate weighted averages in excel using formulas. In this article we will learn what a weighted average is and how to Excel’s SUMPRODUCT formula to calculate weighted average / weighted mean.

What is weighted average?

Wikipedia defines weighted average as, “The weighted mean is similar to an arithmetic mean …, where instead of each of the data points contributing equally to the final average, some data points contribute more than others.”

Calculating weighted averages in excel is not straight forward as there is no built-in formula. But we can use SUMPRODUCT formula to easily calculate them. Read on to find out how.

5 Responses to “Employee Performance Panel Charts in Power BI with R”

  1. GraH says:

    Really? I asked yesterday if this could be done with Power BI, and today there is new post answering that question?
    With vid tutorial included?!
    You rock (once more), mister! 🙂
    Nice to read you are going to share more about Power BI. Loving it already.
    I have Power BI installed on my PC since a couple of months, but I don't have the time to play around. Luckily dudes like your to that for us and share what they've discovered. 😉

  2. Ganesan says:

    Hi Chandooo,

    Does Excel 2010 Macro supports Power Query?

  3. Justin says:

    I Have Power BI and have had a small play.

    I love this site as its easy to understand and all the basic stuff is free along with some of the more technical stuff to.

    I would love to see a section turn up in the navi bar covering Power BI in the same simple way you have done with the rest of the site on EXCEL

  4. Pablo says:

    In case you are interested, there is an User Group called 'Power BI for Data Science' where you can find this and many other cool things.
    You can go to http://www.pbiusergroup.com/datascience after log in and register, and access all the content, including career center.

    The main purpose for that User Group is to expand the usage of Power BI interacting with R.

    By the way Chandoo, I already published your blog at that site, as I find it really good and useful.

    Thank you very much.

Leave a Reply