Nothing
## ----include = FALSE----------------------------------------------------------
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
## ----setup--------------------------------------------------------------------
library(agriutilities)
library(agridat)
data(besag.met)
dat <- besag.met
results <- check_design_met(
data = dat,
genotype = "gen",
trial = "county",
traits = "yield",
rep = "rep",
block = "block",
col = "col",
row = "row"
)
## -----------------------------------------------------------------------------
print(results)
## -----------------------------------------------------------------------------
obj <- single_trial_analysis(results, progress = FALSE)
print(obj)
## ----eval=FALSE---------------------------------------------------------------
# met_results <- met_analysis(obj)
# print(met_results)
## ----echo=FALSE---------------------------------------------------------------
if (requireNamespace("asreml", quietly = TRUE)) {
met_results <- met_analysis(obj)
print(met_results)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.