- What files to submit:
- Week 1 - one text file (such as a Word doc), and one .xlsx file
- Week 2-9 - a zip file containing one .R file & any data files needed to run it
- Student chosen topics - a zip file containing one .R file & any data files needed to run it
- To create zip, put all files into single folder, right click folder, and select compress option
- Submit folder through Canvas
Code Checklist
Make sure your code matches the provided answers
- At the bottom of each exercise a set of answers are provided. For full credit your answers should match those provided. For example, if there are three separate plots your code should produce three separate plots.
- Some errors can lead to only subtle differences so check carefully
- Sometimes small differences result in changes in packages. If you see a difference but you think your answer is right, let us know and we can check.
Make sure your code follows the instructions
- It is possible to get the right output even when doing something the wrong way
- To get full credit on assignments you need to both follow the instructions and get the right output
Clean up your code
Code should be easy to read and understand.
- Only include code and comments necessary for the assignment. Remove anything else (e.g., notes taken during class, commented code that isn’t needed anymore).
- Remove extra/duplicate files. Only turn in what is necessary for the assignment.
- Remove any uses of
install.packages
- Clearly label problems using comments.
Make sure your code runs like you think it does
Code should run from the start of the file to the end of the file without problems. To make sure this is true:
- Restart the R environment by clicking on the
Session
menu item and thenRestart R
. - Run the entire file by either clicking the
Source
button or using theCtrl-Shift-S
keyboard shortcut.
Work with data files appropriately
Code should run the same way regardless of which computer it is run on. In order to grade your code someone will need to run it on another computer. To make sure your code will work on another computer:
- Do not use setwd()
- Use relative paths, not absolute paths. E.g., use
data/mydata.csv
instead ofC:\Users\Batman\DataCarp\data\mydata.csv
. - Make filenames in the code match the actual filenames exactly including capitalization