A Minimal Book Example
1
Prerequisites
2
Introduction
2.1
R Markdown
3
Homework number 2
4
From Victor SCHOTT (IES21199)
4.1
Code chunk 1 for HW1
4.1.1
head() is a function in base-R that display only the first 6 observations
4.2
Code chunk 2 for HW1
4.2.1
tidying the raw data into the tidy data using
pivot_longer()
and
separate()
functions in the tidyr package
4.3
Code chunk 3 for HW1
4.3.1
transforming our data using
group_by()
and
summarize()
functions in the dplyr package
4.3.2
Because we created the
Part
variable in our tidy data,
4.3.3
we can easily calculate the mean of the
Value
by
Species
and
Part
4.4
Code chunk 4 for HW1
4.4.1
visualizing our data using
ggplot()
function in the
ggplot2
package
5
Literature
6
Methods
7
Applications
7.1
Example one
7.2
Example two
8
Final Words
References
Published with bookdown
HW2
Chapter 3
Homework number 2