A course in quantitative research workflow for students in the higher education administration program at the University of Florida
In this first assignment, I’m asking you to do five things:
If you weren’t able to get everything set up and working prior to or during our first class meeting, please take time to finish installing all the software required for the course. Please set up a time to meet with me ASAP if you are having issues.
If you haven’t already, please do the following things for your GitHub profile:
*.R
) script<lastname>_assignment_1.R
in the assignments
folder in your
personal repo, replacing <lastname>
with your last name. For
example, I would call my assignment skinner_assignment_1.R
and it
would be located in the following location:
student_skinner/
|
|__assignments/
|
|__skinner_assignment_1.R
NOTE that you can complete these steps using either the drop down menus or the icons.
Also, don’t forget to add .R
to the end of your file. You will
know you’ve done it correctly if the tab with your file name
changes to include an icon that looks like a sheet of paper with an
“R” superimposed on it.
## install rmarkdown package
install.packages("rmarkdown")
*.md
) fileNB: Use The Markdown Guide at www.markdownguide.org to help you with this portion of the assignment.
<lastname>_assignment_1.md
in the assignments
folder in your
personal repo, replacing <lastname>
with your last name (note the
different file ending this time). For
example, I would call my assignment skinner_assignment_1.md
and it
would be located in the following location:
student_skinner/
|
|__assignments/
|
|__skinner_assignment_1.md
Don’t forget to add .md
to the end of your file. You will know
you’ve done it correctly if the tab with your file name changes to
include an icon that looks like a sheet of paper with an “MD”
superimposed on it.
The following sentence, but add markdown syntax so that one word is bolded, one is italicized, and one is bold italicized:
In God we trust. All others must bring data.
x <- 1
inside*.pdf
or an *.html
version of the
file will be saved in same place as your *.md
file. Whether it is
a PDF or HTML file will depend on whether you selected to Preview
HTML or Preview PDF if you clicked the down arrow instead of the
button directly (the default if you click the button should be
*.html
). You should stage, commit, and push these files in
addition to the working *.md
file.Remember, you can do these steps as many times as you want. I would encourage you to commit smaller changes and push to your remote GitHub repo often rather than wait until the last minute.
.R
script).