Skip to contents

Prints information about met_analysis() function.

Usage

# S3 method for metAgri
print(x, ...)

Arguments

x

An object fitted with the function met_analysis().

...

Options used by the tibble package to format the output. See `tibble::print()` for more details.

Value

an object inheriting from class metAgri.

Author

Johan Aparicio [aut]

Examples

if (FALSE) {
library(agridat)
library(agriutilities)
data(besag.met)
dat <- besag.met
results <- check_design_met(
  data = dat,
  genotype = "gen",
  trial = "county",
  traits = c("yield"),
  rep = "rep",
  block = "block",
  col = "col",
  row = "row"
)
out <- single_trial_analysis(results, progress = FALSE)
met_results <- met_analysis(out, progress = FALSE)
print(met_results)
}