A course in quantitative research workflow for students in the higher education administration program at the University of Florida
NOTE This assignment needs to be completed by the start of the second class. That means everything pushed to you remote GitHub repo before class starts.
In this first assignment, I’m asking you to do three things:
If you weren’t able complete all the setup during class time, be sure that you have done so and everything is in working order. Set up a time to meet with me this week if you are having issues.
As I mentioned in class, Markdown is a useful plain text markup language (meaning you format your document by including special syntax directly in your text rather than, say, clicking a button like with MSWord). We will use it throughout the semester.
To get some background information, read the Getting Started page (www.markdownguide.org/getting-started) for general information about Markdown. Also look through the guide at www.markdownguide.org/basic-syntax/ for the basic Markdown syntax.
Initialize a file called introduction_hw_<your_last_name>.md
in
your /working
directory. (NB Notice the file ending of *.md
— this is a Markdown-style plain text file.).
You can do this directly in RStudio by:
/working
folder, and save. Don’t forget
to add the .md
to the end. 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.Within your file, please include the following:
A top-level (h1) header with the assignment name
The following sentence in which one word is bolded, one is italicized, and one is bold italicized:
In God we trust. All others must bring data.
An unordered list of 3-5 book titles (italicized) with author
An ordered list of the order of operations for using git / GitHub before each class and work session
A block quote of a favorite short quote (including attribution)
A code block with the code x <- 1
inside
Check that your file builds correctly using RStudio’s Preview
button. You’ll see that a *.pdf
or an *.html
verson of the file
will be saved in your folder, depending on whether you selected to
Preview HTML or Preview PDF if you clicked the downarrow instead
of the button directly (default if you click the button should be
*.html
). You should stage, commit, and push these files in
addition to the working *.md
file.
As you’re working, take the following steps to add/stage, commit, and push your work to your repo using the Git tab in the upper right frame:
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.