Watts-College / cpp-528-spr-2022

https://watts-college.github.io/cpp-528-spr-2022/
0 stars 0 forks source link

Renv folder questions #12

Closed krbrick closed 2 years ago

krbrick commented 2 years ago

Is there here package supposed to be documented in renv/activate.r folder in github?

krbrick commented 2 years ago

Also are we supposed to be adjusting the utilities.r file with functions?

yukicruz commented 2 years ago

Is there here package supposed to be documented in renv/activate.r folder in github?

The here package will appear locally in a directory similar (but possibly different based on your system) to this: ... renv >library > R-4.1 > x86... > here

yukicruz commented 2 years ago

Also are we supposed to be adjusting the utilities.r file with functions?

I find it cleaner to keep each .R file separate for each lab as you progress through the course. Your .R file stores your data processing steps. You do not have to call it utilities.R anymore but there's also no reason to overcomplicate a name or change a name that already works. Lab04 has a _lab_04source.R file here.

As you do move towards focusing on the final project, it may help to consolidate the necessary functions into a master utilities R file.