2+2
[1] 4
Intro to R and RStudio
Emily Malcolm-White
A comprehensive list of markdown syntax can be found at https://quarto.org/docs/authoring/markdown-basics.html.
Markdown Syntax | Output |
---|---|
italics | |
bold | |
bold italics | |
|
|
this is the text that will display | |
To create a R chunk:
Calculations and R code goes inside chunks.
Commenting inside an R chunk:
Assigning a value to an object:
Operations with objects:
Creating a vector:
Type in the plain text section:
Displays as:
\[y=\frac{x^2}{SE(x^2)} \]
Hint: Some people like to use the visual editor to insert equations
Type in the plain text section:
We take and calculate the standard error $SE(x_1)$.
Displays as:
We take and calculate the standard error \(SE(x_1)\).
Type in the plain text section:
This is a sentence. The value of x is `r x`
Displays as:
This is a sentence. The value of x is 11.