Created
September 10, 2021 19:20
-
-
Save cavedave/4b486b01a68e614997da1ba04b595801 to your computer and use it in GitHub Desktop.
waffle graph of vaccination to ICU proportions
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
library(ggplot2) | |
library(waffle) | |
people <- c(`Vaccinated `=91,`Vaccinated in ICU`=1, `Unvaccinated`=7, | |
`Unvaccinated in ICU `=1) | |
waffle(people, rows=10, size=0.6, | |
colors=c("#44D2AC", "#E48B8B", "#B67093", | |
"#3A9ABD"), | |
title="Irish Adults", | |
xlab="92% vaccinated have 50% of ICU cases") | |
Author
cavedave
commented
Sep 10, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment