csv
file using relative paths, your code will look like this from a project.RStudio projects helps you create good habits for reproducible analysis as all analyses are conducted within a stand-alone folder structure. Your data and scripts can be shared.
Use a basic structure for all projects:
My-project
|
|-.Rproj (The project settings)
|--/data (Contains all data needed for your analysis)
|--/R (Contains all scripts/R-files)
|--/output (Collection of all output files)
This text is an example of the markdown syntax which includes **bold**, *italic*,
^super^ and ~subscript~ and ~~striketrough~~
Resulting in:
This text is an example of the markdown syntax which includes bold, italic, super and subscript and
striketrough
We can also use html for <sub>subscripts</sub>
and <sup>superscript</sup>
We can also use html for subscripts and superscript
Mathematical formulas can be added inline with $y_i \sim \operatorname{Normal}(\mu_i, \sigma)$
or as a block, using
$$
y = \beta_0 + \beta_1 \times x_1 + \epsilon
$$
Mathematical formulas can be added inline with \(y_i \sim \operatorname{Normal}(\mu_i, \sigma)\)
or as a block, using
\[ y = \beta_0 + \beta_1 \times x_1 + \epsilon \]
A list can be unordered and ordered
* Item A
+ Item x
1. Item 1
2. Item 2
i) Item i
A list can be unordered and ordered
| Left |Center|Right|
| :--- |:---: |---:|
|Text | Text| Text|
|35| 3| 999|
: A table caption
Left | Center | Right |
---|---|---|
Text | Text | Text |
35 | 3 | 999 |
![](img/inn-logo.svg)
![](img/inn-logo.svg){#fig-inn}
See [@fig-inn] for an example ...
See Figure 1 for an example …
#| echo: false
#| message: false
#| warning: false
#| label: fig-example
#| fig-cap: "An example figure"
library(exscidata); library(tidyverse)
cyclingstudy %>%
ggplot(aes(weight.T1, height.T1)) + geom_point()
See the.