jhudsl / intro_to_r

A 2-week introduction to R programming course, with a focus on public health datasets
https://jhudatascience.org/intro_to_r/
MIT License
14 stars 6 forks source link

Subsetting tiny fixes #587

Open carriewright11 opened 2 months ago

carriewright11 commented 2 months ago
avahoffman commented 2 months ago

In 3.1,

Create a subset called `county_2012` from `county_pop` that only contains the rows for the year 2012 and only the columns: `county_name`,   `state_name`, `population`. `year` should not be included in `county_sub`.

I think this should be county_2012 not county_sub

Re-order the rows of `county_2012` by population in increasing order. Use `arrange()`. What is county with the smallest population?

Missing a word

carriewright11 commented 2 months ago

tell them in the slide about errors for filter - remind them how it works- someone got confused - it works on rows based on specified conditions for values across the rows of particular columns

carriewright11 commented 1 month ago

Check https://github.com/fhdsl/DaSEH/issues/81 for overlap