From c101f64f860aaa91ca5daca51e14f42b5be039db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mine=20=C3=87etinkaya-Rundel?= Date: Wed, 1 Jun 2022 00:22:32 -0400 Subject: [PATCH] Add what TB is, fix typos, closes #1030 --- data-tidy.qmd | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data-tidy.qmd b/data-tidy.qmd index b682c57..ad15a8e 100644 --- a/data-tidy.qmd +++ b/data-tidy.qmd @@ -43,7 +43,7 @@ From this chapter on, we'll suppress the loading message from `library(tidyverse You can represent the same underlying data in multiple ways. The example below shows the same data organised in four different ways. -Each dataset shows the same values of four variables: *country*, *year*, *population*, and *cases*, but each dataset organizes the values in a different way. +Each dataset shows the same values of four variables: *country*, *year*, *population*, and *cases* of TB (tuberculosis), but each dataset organizes the values in a different way. @@ -140,7 +140,7 @@ ggplot(table1, aes(year, cases)) + c. Divide cases by population, and multiply by 10000. d. Store back in the appropriate place. - You haven't yet learned all the functions you'd need to actual perform these operations, but you should still be able to think through the transformations you'd need. + You haven't yet learned all the functions you'd need to actually perform these operations, but you should still be able to think through the transformations you'd need. 3. Recreate the plot showing change in cases over time using `table2` instead of `table1`. What do you need to do first?