<aside> <img src="/icons/laptop_gray.svg" alt="/icons/laptop_gray.svg" width="40px" />
introducion.pdf
: a pdf file compiled using R markdownTODO
to find lines that need to be edited.
</aside>If you don’t have R yet, please go ahead and download R and R studio. R studio allows a neat visual interface with R, so I’d recommend you downloading it.
{r}` and end with a `````. As you can see in the blog, you can include different options like
{r echo=False}` in the beginning of a chunk, depending on what you like. We won't worry about these optional settings for now. But always make sure to begin and end the chunk with those.If you are less familiar with R, see Part 2 in https://learningstatisticswithr.com/lsr-0.6.pdf
introduction.Rmd
You will work with this file. (You should save it as a text file and change the extension, or you can also download the file directly from Canvas.)
<aside> <img src="/icons/attachment_gray.svg" alt="/icons/attachment_gray.svg" width="40px" />
</aside>
If you don’t have R markdown, you can easily download it by entering:
install.packages("rmarkdown")
You will see a guideline inside the R markdown (.Rmd) script. Your task is to assign the variables with your response.
The first chunk will look like this:
# Assign variables
```{r}
# TODO: Assign a value to the variable with your name
NAME <- "Sanghee Kim"
# TODO: Replace/assign values with your
# linguistic research interest, experience, and programming knowledge.
# Also talk about some things you like!
interest <- "Your topics of interest in linguistic research."
experience <- "Your background or experience related to linguistic research."
favorite_fruit <-
hobby <-
You should replace some variables with your response, and fill in the missing values for the variables (e.g., “favorite_fruit”).