Lab 05 - Conveying the right message through visualisation

Complete the following steps before you join the live workshop!

Workshop prep

You have two tasks you should complete before the workshop:

Part 1 - Masks and COVID

The following visualisation was shared on Twitter as “extraordinary misleading”.

Before you join the workshop, think about what is misleading about this visualisation and how you might go about fixing it. Take some notes and bring your notes to the workshop to share with your teammates.

Complete the following steps during the live workshop with your team.

  1. Create a data frame that can be used to re-construct this visualisation. You may need to guess some of the numbers, that’s ok. You should first think about how many rows and columns you’ll need and what you want to call your variables. Then, you can use the tribble() function for this. For example, if you wanted to construct the following data frame
df
## # A tibble: 3 x 2
##   date     count
##   <chr>    <dbl>
## 1 1/1/2020    15
## 2 2/1/2020    20
## 3 3/1/2020    22

you can write

df <- tribble(
  ~date, ~count,
  "1/1/2020", 15,
  "2/1/2020", 20,
  "3/1/2020", 22,
)

Since the exercises for this week are short it’s possible not every team member will get to commit and push during the workshop. However each team member should review what was created, fix typos, make edits for better presentation, etc. either during or after the workshop, and before the deadline.

  1. Make a visualisation that more accurately (and honestly) tells the story.

  2. What message is more clear in your visualisation than it was in the original visualisation?

  3. What, if any, useful information do these data and your visualisation tell us about mask wearing and COVID? It’ll be difficult to set aside what you already know about mask wearing, but you should try to focus only on what this visualisation tells. Feel free to also comment on whether that lines up with what you know about mask wearing.

🧶 ✅ ⬆️ Knit, commit, and push your changes to GitHub with an appropriate commit message. Make sure to commit and push all changed files so that your Git pane is cleared up afterwards.

Aim to make it to this point during the workshop.

Part 2 - Work on projects

Once you’re done with this week’s lab, take a moment to go through the issues posted for your project proposal. Either work on your project re-proposal, or should you decide not to do that, work on making a plan to address these issues to make progress on your project.