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

add directions for hints that the `#` and backticks need to removed in labs #180

Closed carriewright11 closed 1 year ago

carriewright11 commented 2 years ago

had students confused by this and told me to do this

carriewright11 commented 2 years ago

I think we can mostly just update earlier labs... but we shall see

carriewright11 commented 2 years ago
avahoffman commented 2 years ago

I haven't been uncommenting, just retyping below. My group seemed like this wasn't an issue...

avahoffman commented 2 years ago

possible solution: include hint/format under the question, e.g.,

  1. Summarize the data to get the max and min of length using the summarize function.
# General format 
{data to use} %>% 
    summarize({summary column name} = {operator(source column)})

image

carriewright11 commented 2 years ago

I've just added instructions

carriewright11 commented 2 years ago

I was also surprised that this was a challenge for my group - as it wasn't before, maybe I just describe it differently somehow