-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
Common trip ups experienced by students
(Apologies if this content is actually covered, I missed Tuesday's lab and haven't read through the lab material in detail, so it could be that students aren't reading properly!)
- Many could not figure out how to load the data. Do they know that the R project file sets their working directory in the folder and they need to use relative paths to get to the data?
- Many didn't seem to know how functions work, e.g. what arguments are. It seems they don't know the
?helptip to bring up the help page, which would be helpful when you introduce functions likejanitor::clean_names() - Some students were forgetting about needing to assign values to variables, e.g. they save the data to
stalagmites_datathen ranclean_names(stalagmites_data)without saving it likestalagmites_data <- clean_names(stalagmites_data) - Sometimes
filter()would throw an uninformative error which would be fixed when I specifieddplyr::filter(). Maybe R is getting mixed up betweenstats::filter()anddplyr::filter()? I don't know why this was happening on some of the student's sessions, but not for other students. - When we introduce the pipe
|>there's an example with two chunks, one using the pipe and one without. They produce different outputs (3 and 8) which is confusing. I think the second chunk needspenguins$island - Both I and some students were confused when reproducing Fig. 3 what 'annual growth rate' was. I think it is just lamina thickness but this is not super clear.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels