January 2, 2026
Please play along…
File -> New File -> Quarto Document... using the menus.Create Empty Document and then remove the minimal YAML header to start with a truly empty document.Quarto documents allow you to mix narrative and data analysis all in one document, outputting multiple formats including HTML, Word Document, PDF, slides, and more.
You’ll be asked to work in Quarto for your two practical exams and we’ll spend our first few class meetings in the Quarto environment as well.
Quarto documents consist of the following components.
The YAML header is at the top of the document, between “code fences” (---).
author: and choose a different theme: if you’d like.Code chunks are opened and closed with triple back-ticks, followed by curly braces and the name of the language you are writing in (for our class, that will be r.
+c button and choose R as the option or you can use the keyboard shortcut Option + Command + I (mac) / Ctrl + Alt + I (Windows).Text blocks permit you to write text freely, using markdown shortcuts and HTML to format your text. You may alternatively use the Visual Editor if you prefer a more familiar click-button interface.
As you are creating a Quarto document, it will be convenient to run your code and ensure that it works as expected.
command (mac) or ctrl (Windows) and hitting the Enter/Return key.Warnings: Below are a couple of warnings to give you a heads-up on some common issues.
You must have a blank line before and after the triple back-ticks opening and closing a code chunk.
You can’t “run” the lines with the triple back-ticks on them.
Code flows like a river – downstream code (code lower in your document) is only aware of code that exists and has been run upstream (earlier in your document).
You can render your entire document, which includes running all the code in it, by using the blue Render arrow at the top of your editor.
Coding is finicky – you’ll experience errors (often showing as red text in the console). That’s natural, it happens to everyone, and I’m here to help!
We’ll save writing and executing code for our next meeting, choosing to focus on text today.
Before we do though, complete each of the following.
You have two choices regarding how your Quarto editor looks – the Source editor or the Visual editor.
These are toggled from the top-left corner of the editor window.
The choice of which to use is yours.
We’ll use what you learned in the Topic 1 notebook, providing an introduction to data and data types to classify variables from the Austin Zillow data set.
Consider the following reminders:
Observations are the units from which data were recorded.
Variables are the characteristics being measured about each observation.
Variables can be numerical, categorical, or neither. In this course, we’ll refer to the latter category as unique identifiers.
Navigate down to line 43 of the Quarto document. There, you’ll not that we’re going to fill in a data dictionary for the Zillow Dataset.
Work with the people around you to address each of the following.
Navigate to our MAT241 Exit Ticket Form, answer the questions, and complete the task below.
Note. Today’s discussion is listed as 1. Intro to Data

Task: Provide at least one question you’d be interested in answering with our available Austin Zillow data.
Render your notebook and make sure that the sections we’ve updated look as you intended them to.
We got a first taste of writing in a Quarto document today, and we’ll continue to learn more.
Homework: Complete and submit the Topic 2 notebook by 11:59PM on Sunday, January 11. This notebook will give you a first introduction to using R.