This week you’ll be working on your projects. Here are a few to do items to get you started. Once you complete these, use the rest of the time to, well, work on your project!
Remind yourself of the project assignment
Go to the course organization on GitHub and clone your project repo titled project-TEAM_NAME
Add your project title and team name to the README.Rmd
file in the repo and commit and push your changes. Observe that these are updated in the README of the repo.
Open the presentation.Rmd
file, knit the document, and review the presentation format. This is where your presentation will go. Update the YAML with your project title, team name, etc. and commit and push your changes.
Go to your project repo on GitHub, click on Settings on the top right corner, and scroll down to the section titled GiHub Pages. Under Source, select main
branch and the root
folder. This will give you a URL where the website for your project will be automatically built from the content in your README. This might take a few minutes.
Add your dataset to the data
folder and add your codebook to the README in that folder.
Add the content from your proposal to the proposal.Rmd
file in the proposal
folder. Knit the document to make sure everything works and commit and push your proposal to your project repo.
data
that is not inside your proposal folder. So you need to specify the path to your data with "../data/name_of_datafile"
in your read_csv()
(or similar) function.Load your data in your presentation.Rmd
, knit, and make sure everything works. Commit and push your updated proposal to your project repo.
data
that is not inside your presentation folder. So you need to specify the path to your data with "../data/name_of_datafile"
in your read_csv()
(or similar) function.Now that all the logistical details are done, start working on your project.
Strongly recommended: Get a hold of the instructor or a TA and run your ideas by them.