A course in quantitative research workflow for students in the higher education administration program at the University of Florida
Workshop modules are listed in order of the course. The R script () and data () used to create each module will be linked at the top of the page.
All modules assume the directory structure below.
past/edh7916/2022/spring/
|
|__ data/
| |
| |-- lesson1.rds
| |-- lesson2.rds
| |...
|
|__ scripts/
| |
| |-- lesson1.R
| |-- lesson2.R
| |...
When running scripts in RStudio, the working directory should be
path/to/past/edh7916/2022/spring/scripts
. You can check in RStudio
by typing getwd()
in the console. For example, let’s say you’ve
saved the files in a folder called courses
, which is in your home
directory. Then you should see (if on a Mac):
> getwd()
[1] "/Users/benski/courses/past/edh7916/2022/spring/scripts"