is_balanced_trial: Check if a data set is balanced

is_balanced_trialR Documentation

Check if a data set is balanced

Description

Check if a data set coming from multi-environment trials is balanced, i.e., all genotypes are in all environments.

Usage

is_balanced_trial(.data, env, gen, resp)

Arguments

.data

The dataset containing the columns related to Environments, Genotypes, replication/block and response variable(s).

env

The name of the column that contains the levels of the environments.

gen

The name of the column that contains the levels of the genotypes.

resp

The response variable.

Value

A logical value

Author(s)

Tiago Olivoto tiagoolivoto@gmail.com

Examples


unb <- data_ge %>%
        remove_rows(1:3) %>%
        droplevels()
is_balanced_trial(data_ge, ENV, GEN, GY)
is_balanced_trial(unb, ENV, GEN, GY)



metan documentation built on March 7, 2023, 5:34 p.m.