|
| 1 | +# Experimental Design |
| 2 | + |
| 3 | + |
| 4 | +```{r setup, echo=FALSE, message = FALSE} |
| 5 | +library(googlesheets) |
| 6 | +library(knitr) |
| 7 | +library(dplyr) |
| 8 | +
|
| 9 | +opts_knit$set(echo = FALSE, message = FALSE, cache = TRUE) |
| 10 | +
|
| 11 | +``` |
| 12 | +## Accessions |
| 13 | + |
| 14 | +```{r accessions, echo = FALSE, message = FALSE} |
| 15 | +ss <- gs_key("1Nfabx_n1rNlO6NW3olD8MAibJ3KHnOMmMwOYYw4wwGc") |
| 16 | +accessions <- gs_read(ss, ws = "Accessions") |
| 17 | +a <- accessions %>% mutate_each( funs_( lazyeval::interp( ~replace(., is.na(.), "") ) ) ) %>% select(Entry, Code, Source, Pedigree, Pedigree2) |
| 18 | +
|
| 19 | +a[1:193,] %>% kable |
| 20 | +
|
| 21 | +a[195:201,] %>% kable(caption = a[194,'Entry']) |
| 22 | +
|
| 23 | +a[204:252,] %>% kable(caption = a[203,'Entry']) |
| 24 | +
|
| 25 | +``` |
| 26 | + |
| 27 | +https://docs.google.com/spreadsheets/d/1Nfabx_n1rNlO6NW3olD8MAibJ3KHnOMmMwOYYw4wwGc/pubhtml?gid=239932660&single=true |
| 28 | + |
| 29 | +## Experiments |
| 30 | + |
| 31 | +```{r experiments, echo = FALSE, message = FALSE} |
| 32 | +experiments <- gs_read(ss, ws = "Experiments") |
| 33 | +experiments %>% kable |
| 34 | +``` |
| 35 | + |
| 36 | +https://docs.google.com/spreadsheets/d/1Nfabx_n1rNlO6NW3olD8MAibJ3KHnOMmMwOYYw4wwGc/pubhtml?gid=890543376&single=true |
| 37 | + |
| 38 | +## 2016 Field Layout |
| 39 | + |
| 40 | +### Under Gantry |
| 41 | + |
| 42 | +```{r gantry-plot-layout, echo = FALSE, message = FALSE} |
| 43 | +gantry_plot_layout <- gs_read(ss, ws = "Gantry Plot Layout") |
| 44 | +gantry_plot_layout %>% kable |
| 45 | +``` |
| 46 | + |
| 47 | +https://docs.google.com/spreadsheets/d/1Nfabx_n1rNlO6NW3olD8MAibJ3KHnOMmMwOYYw4wwGc/pubhtml?gid=1231399646&single=true |
| 48 | + |
| 49 | +### West of Gantry |
| 50 | + |
| 51 | +```{r west-of-gantry-plot-layout, echo = FALSE, message = FALSE} |
| 52 | +west_of_gantry_plot_layout <- gs_read(ss, ws = "West of Gantry Plot Layout") |
| 53 | +west_of_gantry_plot_layout %>% kable |
| 54 | +``` |
| 55 | + |
| 56 | +https://docs.google.com/spreadsheets/d/1Nfabx_n1rNlO6NW3olD8MAibJ3KHnOMmMwOYYw4wwGc/pubhtml?gid=728631369&single=true |
| 57 | + |
0 commit comments