08:00
Dr. D’Agostino McGowan
Step 1: Create a New Project
Click File > New Project
Step 2: Click “Version Control”
Click the third option.
Step 3: Click Git
Click the first option
Step 4: Copy my starter files
Paste this link in the top box (Repository url
):
https://github.com/sta-363-s23/appex-01-welcome-penguins.git
Penguin fun!
https://github.com/sta-363-s23/appex-01-welcome-penguins.git
in the Repository url boxwelcome-penguins.qmd
fileyaml
– we’ll talk about what this means later) and render again.plot
chunk, below Palmer Penguins. Instead of looking at the relationship between flipper length and bill length, plot the relationship between flipper length and bill depth. Hint, look at the full dataset at the bottom of the document for variable names, update the captions to match your new plot.08:00
A short list (for now):
R packages for data science
The tidyverse is an opinionated collection of R packages designed for data science. All packages share an underlying design philosophy, grammar, and data structures.
.qmd
fileUse the Render button in the RStudio IDE to render the file and preview the output with a single click or keyboard shortcut (⇧⌘K).
If you prefer to automatically render whenever you save, you can check the Render on Save option on the editor toolbar.
The YAML header starts and ends with three dashes
R code chunks identified with {r}
with (optional) chunk options, in YAML style, identified by #|
at the beginning of the line.
Would this code chunk be “included” in the final report?
Your turn
04:00
Remember this, and expect it to bite you a few times as you’re learning to work with Quarto: The workspace of your Quarto document is separate from the Console!
All looks good, eh?
What happens? Why the error?
assignment
Slides adapted from datasciencebox.org by Dr. Lucy D’Agostino McGowan