Quantcast
Channel: CodeSection,代码区,网络安全 - CodeSec
Viewing all articles
Browse latest Browse all 12749

Hypothetical Outcome Plots

$
0
0

(This article was first published on max humber , and kindly contributed toR-bloggers)

suppressPackageStartupMessages(library(tidyverse)) # devtools::install_github("dgrtwo/gganimate") # install.packages("cowplot") library(gganimate) # install image magick in terminal >> "brew install image magick"

If the Weatherman says that there is 30% chance of rain tomorrow. And it rains. Was he wrong? It’s an important question. Because it rained on November 8th. And a lot of people think that it wasn’t supposed to.

Communicating uncertainty is hard. It’s hard because uncertainty can be convoluted and opaque. And it’s hard because a lot of people can’t get down with boxplots or measures of spread.

Take this toy data for example:

set.seed(2016) df <- tibble( `Blue Team` = round(rnorm(50, mean = 48, sd = 5)), `Red Team` = round(rnorm(50, mean = 45, sd = 3)) ) %>% mutate(simulation = row_number()) %>% gather(team, probability, -simulation) %>% mutate(probability = ifelse(probability >= 100, 100, probability) / 100)

Imagine that this data was generated from some model. How might we represent the uncertainty in our model and around our predictions?

Perhaps we might push the data through a boxplot:

df %>% ggplot(aes(x = team, y = probability)) + geom_boxplot()
Hypothetical Outcome Plots

Or a density chart:

df %>% ggplot(aes(x = probability, fill = team)) + geom_density(alpha = 1/2) + scale_fill_manual(values = c("blue", "red"))
Hypothetical Outcome Plots

Or use some errorbars:

df %>% group_by(team) %>% summarise( mean = mean(probability), low = quantile(probability, 0.025), high = quantile(probability, 0.975)) %>% ggplot(aes(x = team, y = mean)) + geom_errorbar(aes(ymin = low, ymax = high))
Hypothetical Outcome Plots

These options all kind of suck, though. They’re not super intuitive. And they aren’t all that convincing, because they can intimidate a lot of people!

Instead of boxplots or density charts or regular errorbars we can hack errorbars to generate a proto-Hypothetical Outcome Plot:

df %>% ggplot(aes(x = team, y = probability)) + geom_errorbar(aes(ymin = probability, ymax = probability))
Hypothetical Outcome Plots

Hypothetical Outcome Plots (HOPs) are a way to build and visualize uncertainty in the same way that we experience it (in and by countable events). The depth and theory behind HOPs is beyond the scope of this quick post, but if you’re interested in learning more check out this awesome Medium story by the UW Interactive Data Lab .

Extending our hacked errorbars with gganimate we can implement an actual HOP in just a few lines of R:

p <- df %>% ggplot(aes(x = team, y = probability, frame = simulation)) + geom_errorbar(aes(ymin = probability, ymax = probability)) gganimate(p, title_frame = FALSE)
Hypothetical Outcome Plots

In this way we can directly experience the uncertainty of our model and the predictions that it happens to make.

In looking at the HOP it seems as though the Blue Team is supposed to win our imaginary game. Importantly, however, the Red Team comes up on top in certain simulations. So, don’t say that the model is wrong if they happen to actually win our imaginary game!

If you want to add a little polish to your HOP, I might suggest extending it with some ghost bars:

p <- df %>% ggplot(aes(x = team, y = probability)) + geom_errorbar(aes( ymin = probability, ymax = probability, frame = simulation, cumulative = TRUE), color = "grey80", alpha = 1/8) + geom_errorbar(aes( ymin = probability, ymax = probability, frame = simulation), color = "#00a9e0") + scale_y_continuous( limits = c(0, 1), labels = scales::percent_format()) + theme(panel.background = element_rect(fill = "#FFFFFF")) + labs(title = "", y = "Probability of winning", x = "") gganimate(p, title_frame = FALSE)
Hypothetical Outcome Plots

But that’s it. Thanks for reading!

I have two more posts in the queue about visualizing models and model performance. Look for them in the near future!


Viewing all articles
Browse latest Browse all 12749

Latest Images

Trending Articles





Latest Images