-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.Rmd
29 lines (25 loc) · 1.23 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
title: "Analysis of Common Agricultural Designs in R"
author: "Sam Dumble"
date: "`r Sys.Date()`"
site: bookdown::bookdown_site
output: bookdown::gitbook
documentclass: book
bibliography: [book.bib, packages.bib]
biblio-style: apalike
link-citations: yes
description: "A series of guidance, tutorials and examples for dealing with the data analysis of experiments following common agricultural designs using R and RStudio"
---
# Preface
All of these tutorials assume that you have already been able to install R and RStudio onto your computer and that you have a reliable internet connection. For help with orientation of R for new users please see [add cross reference to an intro document].
1. RCBDs (Randomised complete block design) [add cross reference]
2. Split Plot Design [add cross reference]
3. Adjusting for Covariates [add cross reference]
4. Factorial designs and interactions [add cross reference]
5. Multi Environment Trials [add cross reference]
```{r include=FALSE}
# automatically create a bib database for R packages
knitr::write_bib(c(
.packages(), 'bookdown', 'knitr', 'rmarkdown',"emmeans","ggplot2","doBy","lmerTest","multcompView","GGEBiplots","datatable"
), 'packages.bib')
```