PowerBI vs. R Shiny: Two Popular Excel Alternatives Compared

[This article was first published on r – Appsilon Data Science | End­ to­ End Data Science Solutions, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

tl;dr

Choosing the appropriate dashboarding/reporting/BI tool has never harder than it is now, as there are plenty of genuinely great options such as R Shiny, PowerBI, and Tableau. Today we’ll compare two widely used tools at Fortune 500 companies:

  • PowerBI – a collection of software services, apps, and connectors that work together to turn unrelated sources into coherent, visually immersive, and interactive insights (source: Microsoft)
  • R Shiny – a web framework written in R, widely used to make dashboards and interactive web applications

Curious about how Tableau compares to R Shiny? Please read our detailed overview.

One thing to keep in mind: R Shiny is not a reporting/dashboarding tool. Rather, it is a full web framework. As most people use it to make dashboards, and many of our customers compare R Shiny with PowerBI when they invest in analytical solutions, we can consider this comparison fair. We’ll start with a basic overview of PowerBI and then compare both tools in various areas, such as:

At Appsilon, we are global leaders in R Shiny, and we’ve developed some of the world’s most advanced R Shiny dashboards, so we have a natural bias towards using Shiny. However, many members of our team have plenty of experience using PowerBI in professional settings. We will do our best to be impartial in this article to help you decide whether PowerBI or R shiny is genuinely best for your particular needs.

PowerBI Overview

As mentioned previously, PowerBI is used to represent interactive insights from various data sources visually. It is a perfect tool for reporting, which is a read-only operation and is relatively easy to build and maintain. PowerBI is also one of the easiest tools to get started with, as only a couple of crash courses should get you up to speed in no time. We’re not saying R is difficult to learn, but the drag and drop GUI interface is considered to be easier to learn than R, at least for business folks.

But here’s one of the most important selling points – PowerBI just looks good out of the box. You don’t have to be an expert to produce great-looking visualizations with PowerBI. Shiny requires much more manual labor to produce great-looking dashboards. Manual work isn’t necessarily bad, as there’s no limit to what you can do if you’re willing to put the effort in, but simple drag and drop tools are more than enough most of the time.

Looking for some good-looking Shiny dashboard examples? Check out Appsilon’s Shiny Demo Gallery.

For every pro, there’s a con, and PowerBI is not an exception. One of the most significant disadvantages of PowerBI is that it is read-only. As a user, you cannot use charts/tables to make decisions and save them in a database directly. Also, PowerBI doesn’t have an accessible source code. You can only edit fields in WYSIWYG mode, which makes PowerBI easy to start but difficult to maintain. Having no source code makes it nearly impossible to have proper version control, automatically test logic, or collaborate on large projects.

PowerBI comes in a few different flavors, listed below:

  • PowerBI Desktop – an application you can download and install on your computer. Available only for Windows. It has powerful data analysis capabilities and can connect to many data sources. It is used to perform analysis, create visualizations, and to create reports.
  • PowerBI Service (Pro) – web application. It is used to create visualizations and reports. The biggest selling point is dashboards -and they are easy to make. Also, it’s easier to share results thanks to the collaboration mode.
  • PowerBI Mobile – mobile application for both Android and iOS. It is used only to access your data from anywhere, not to perform analysis.

Most of our attention today will focus on the PowerBI Desktop variant.

Connectivity

PowerBI comes with many built-in connection types categorized into FilesDatabasesPower PlatformAzure, and Online services, and is, without any doubt, more versatile than our last contestant – Tableau. As of late 2020, you find these connection options:

PowerBI connection options

Put simply, PowerBI doesn’t come short when it comes to connectivity. On the other side of the equation, R Shiny uses R as the programming language of choice, so Shiny can connect to any source that R can. A simple Google search will yield either a premade library or an example of API calls for any data source type. R Shiny can sometimes have an edge for domain-specific sources. Still, we’ve found multiple examples of PowerBI handling domain-specific data sources, such as CAD files

Winner (Connectivity): Tie

Chart Types

PowerBI provides basic visualization options – bar, line, area, scatter, and pie charts, with a couple of fancier types such as maps, treemaps, funnels, and ribbon charts. Refer to the image below for a full list:

PowerBI chart options

Still, it might be more than enough for most use cases, as more sophisticated statistical plots don’t appear too often in production dashboards. Also, you might have noticed these “R” and “Py” icons. This means you can use R and Python charts in PowerBI, with just one caveat – the source code of these charts is not under version control.

In R Shiny, you can use any visualization library that’s available in R, such as ggplot2 and plotly. Here’s an overview of the types of visualizations you can do with both:

GGplot2 visualization options

GGplot2 options; Source: https://www.r-graph-gallery.com

Plotly visualization options

Plotly options; Source: https://plotly.com/r/

Declaring a winner in this department is a no-brainer. Sure, Shiny can do a lot, but PowerBI can do all of that and much more. PowerBI can handle its own charts and Python-generated ones.

Winner (Chart Types): PowerBI

Ease of Use: Simple Charts

We’ll now get our hands dirty with recreating the same visualization in both PowerBI and Shiny. For demonstration purposes, we’ll use the Gapminder dataset, so make sure to download it if you’re following along. The goal is to create a simple line chart, comparing average life expectancy over time per continent.

Let’s start with PowerBI. We’ve imported the dataset and created the visualization with the following steps:

Simple chart in PowerBI

PowerBI was designed to be easy to use for people from all backgrounds, making this simple chart a no-brainer to implement.

Replicating the same in R Shiny is quite a different story, as we need to write actual code. The dataset is available in R through the gapminder package, so there’s no need to download and import the provided CSV. Shinyintroduces some boilerplate code – an apparent downside for this simple chart but negligible for larger, real-world projects.

Here’s the code:

library(gapminder)
library(ggplot2)
library(dplyr)
library(shiny)

ui <- fluidPage(
  titlePanel("Gapminder explorer", windowTitle = NULL),
  plotOutput("line")
)

server <- function(input, output) {
  output$line <- renderPlot({
    data <- gapminder %>%
      group_by(year, continent) %>%
      summarise(avgLifeExp = mean(lifeExp))

    ggplot(data, aes(x = year, y = avgLifeExp, color = continent)) +
      geom_line(size = 1.5) +
      ggtitle("Average life expectrancy per continent through time") +
      labs(x = "Year", y = "Average life expectancy") +
      theme_light() +
      theme(
        plot.margin = unit(c(2, 1, 1, 1), "cm"),
        plot.title = element_text(vjust = 13),
        legend.position = c(0.25, 1.07), legend.direction = "horizontal"
      )
  })
}

shinyApp(ui = ui, server = server)

And here are the results:

R Shiny simple line chart

As it was the case with Tableau, there’s no point in using R Shiny to produce single-chart and non-interactive dashboards. This is one of the areas where PowerBI dominates, as it’s easy and intuitive to use. Also, charts in R require a bit of customization to look decent and interpretable, which comes out of the box with PowerBI.

Winner (Simple Charts): PowerBI

Ease of Use: Simple Dashboards

Making a simple dashboard in PowerBI was easy – a couple of clicks here and there, a couple of filters, and we’re ready to go. The goal was to display three charts:

  • Average life expectancy through time – as a line chart
  • Total population per continent – only in the most recent year (2007), represented as a bar chart
  • Life expectancy vs. GDP per capita – simple scatter plot, colored by continent

The entire dashboard can then be filtered by continent – by selecting a single one or multiple. Here’s what we’ve managed to create in PowerBI:

Simple PowerBI dashboard

 

To implement roughly the same dashboard in R Shiny, we need to write some R code. Once again, R is a relatively easy language to learn, so we don’t see it as a problem for more tech-savvy users.

The following code recreates the dashboard we had in PowerBI:

library(shiny)
library(gapminder)
library(dplyr)
library(ggplot2)

ui <- fluidPage(
  titlePanel("Gapminder explorer", windowTitle = NULL),
  sidebarPanel(
    width = 3,
    tags$h4("Filter"),
    selectInput(
      inputId = "continentSelect",
      label = "Continents",
      choices = c("Africa", "Americas", "Asia", "Europe", "Oceania"),
      selected = c("Africa", "Americas", "Asia", "Europe", "Oceania"),
      multiple = TRUE
    )
  ),
  mainPanel(
    width = 9,
    fluidRow(
      column(7, tags$div(
        tags$h3("Average life expectancy through time"),
        plotOutput("line")
      )),
      column(5, tags$div(
        tags$h3("Total population per continent"),
        plotOutput("bar")
      ))
    ),
    fluidRow(
      column(12, tags$div(
        tags$h3("Life expectancy vs. GDP per capita"),
        plotOutput("scatter")
      ))
    )
  )
)

server <- function(input, output) {
  output$line <- renderPlot({
    dataLifeExp <- gapminder %>%
      filter(continent %in% input$continentSelect) %>%
      group_by(year, continent) %>%
      summarise(avgLifeExp = mean(lifeExp))

    ggplot(dataLifeExp, aes(x = year, y = avgLifeExp, color = continent)) +
      geom_line(size = 1.5) +
      labs(x = "Year", y = "Average life expectancy") +
      theme(
        plot.margin = unit(c(2, 0, 0, 0), "cm"),
        legend.position = c(0.25, 1.05),
        legend.direction = "horizontal"
      )
  })

  output$bar <- renderPlot({
    popPerContinent <- gapminder %>%
      filter(continent %in% input$continentSelect) %>%
      mutate(maxYear = max(year)) %>%
      filter(year == maxYear) %>%
      select(continent, pop) %>%
      group_by(continent) %>%
      summarise(total = sum(pop))

    ggplot(popPerContinent, aes(x = reorder(continent, -total), y = total)) +
      geom_bar(stat = "identity", fill = "#519bff") +
      labs(x = "Continent", y = "Total population") +
      geom_text(aes(label = formattable::comma(total, digits = 0)), vjust = -0.3, size = 5) +
      theme(
        axis.text.y = element_blank(),
        axis.ticks.y = element_blank()
      )
  })

  output$scatter <- renderPlot({
    lifeExpWithGdp <- gapminder %>%
      filter(continent %in% input$continentSelect) %>%
      select(continent, gdpPercap, lifeExp)

    ggplot(lifeExpWithGdp, aes(x = lifeExp, y = gdpPercap, color = continent)) +
      geom_point(alpha = 0.7) +
      labs(x = "Life expectancy", y = "GDP per capita") +
      theme(
        plot.margin = unit(c(2, 0, 0, 0), "cm"),
        legend.position = c(0.15, 1.05),
        legend.direction = "horizontal"
      )
  })
}

shinyApp(ui = ui, server = server)

And here’s what the dashboard looks like:

Simple Shiny dashboard

We’ll work on visual appearance later, so don’t worry too much about that. It’s hard to announce a clear winner here, but R Shiny’s dashboard feels more solid to work in. As we saw, you can make a simple dashboard much faster with PowerBI. For this reason, we’ll declare PowerBI the winner for simple dashboards, but only for ease of use. R Shiny is more versatile if you require a sophisticated dashboard. 

Winner (Simple Dashboards): PowerBI by a nose

User Input and Interactivity

As mentioned in the overview section, PowerBI is read-only. Sure, you can click on the various filters to include/exclude some data from the chart, but that’s pretty much all you can do. We think inputs are essential in creating interactive dashboards, so a full web framework like Shiny annihilates its opponent in this department.

Shiny has a wide array of inputs – from text fields and buttons to dropdowns and modals. Here’s everything Shiny provides:

Shiny inputs

With all of these options, if arranged right, there’s no task too difficult for Shiny to solve. If you still aren’t sold on the importance of interactivity, here are a couple of points that will make you reconsider:

  • The file input component allows us to upload a custom dataset and perform exploration in the browser
  • The text input and password input fields allow us to build complete web forms – think authentication
  • The var select input allows us to quickly select column(s) of interest from a dataset

Winner (User Input and Interactivity): R Shiny

Visual Styling

Tweaking the looks and feels of visuals in drag and drop tools like PowerBI or even Tableau was never their strong point. These tools are designed to look good by default. Still, not everyone agrees on what classifies as good, so it’s nice to have options.

We’ve found that you can tweak a decent amount of things in PowerBI. Here’s a rough overview:

PowerBI styling

The story is quite different with R Shiny. You can embed custom CSS styles by creating awww folder right where your Shiny app is. The CSS files are then stored inside the mentioned folder.

Learn More:How to Use CSS to Style Your R Shiny Dashboards

To connect the two, you have to put theme = main.css inside the fluidPage in the Shiny app. That’s all. In just a couple of minutes with CSS, we’ve managed to transform our dashboard quite a bit:

Final Shiny dashboard

Here’s the source code for the completed dashboard. The winner of this battle is obvious, once again. PowerBI looks good out of the box, sure, but there’s not much you can do to make it look perfect. R Shiny is extremely versatile when it comes to visual styling (in the hands of the right developer).

Winner (Visual Styling): R Shiny

Conclusion

The final results are in:

  • PowerBI – 3 points
  • R Shiny – 2 points
  • Tie – 1 point

By our count, PowerBI took the lead by a single point for most general use-cases. Of course, choosing the appropriate tool isn’t as simple as counting to 5, so some further clarifications are required. PowerBI is great when you need something relatively simple and aren’t worried too much about the looks and overall feel of the dashboard. For anything more complex, R Shiny overthrows PowerBI. PowerBI just can’t compare with the customizability that Shiny offers, especially if you need to create an enterprise application.

Learn More:Why You Should Use R Shiny for Enterprise Application Development

If you need to create powerful, customizable, and interactive dashboards that look great and respond to user input, Shiny is a clear choice. It requires a bit of coding knowledge even for simple dashboards, but R isn’t a very complicated language. You can quickly get up to speed in a couple of weeks or even a couple of days, depending on your prior knowledge of programming. If you want to make a scalable enterprise Shiny dashboard, then you can always reach out to Appsilon for help. We’re continually pushing the limits of what’s possible with Shiny, and we’d be happy to guide you and your company.

Learn More

Appsilon HiringAppsilon is hiring! See our Careers page for new openings.

Article PowerBI vs. R Shiny: Two Popular Excel Alternatives Compared comes from Appsilon Data Science | End­ to­ End Data Science Solutions.

To leave a comment for the author, please follow the link and comment on their blog: r – Appsilon Data Science | End­ to­ End Data Science Solutions.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Never miss an update!
Subscribe to R-bloggers to receive
e-mails with the latest R posts.
(You will not see this message again.)

Click here to close (This popup will not appear again)