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

Overall I learned a lot and I thought you did a great job of explaining how to do things. This will definitely elevate my reporting in the future.
Rebekah S
Reporting Analyst
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.

8 Responses to “Create a Combination Chart, Add Secondary Axis in Excel [15 Second Tutorial]”

  1. [...] Select the “daily completed” column and add it to the burn down chart. Once added, change the chart type for this series to bar chart (read how you can combine 2 different chart types in one) [...]

  2. [...] set the height series to be plotted on secondary axis. Learn more about combining 2 chart types and adding secondary axis in [...]

  3. [...] To show the years, I have used another dummy series and plotted it on secondary axis (related: how to add secondary axis?) [...]

  4. Thanks for this one!

  5. [...] Choisissez la colonne « Daily Completed » et ajoutez-la au graphique. Une fois ajoutée, changez le type de graphique pour cette série à histogramme (lisez comment combiner 2 types de graphiques en un : combine 2 different chart types in one) [...]

  6. Nat says:

    How do i create a chart that has negative numbers on axis x and y and plot them correctly? I cannot seem to understand how to do this, please help.
    Thanks.

    Nat

  7. MSWebReviewer says:

    You can also plot 2 or more Y axes in Excel using EZplot or Multy_Y from Office Expander.com
    There is a demo version to try.
    Cheers.

Leave a Reply