Skip to contents

Retrieves the observations data of the current active trial (i.e., including all studies within) as configured in the internal state object using `set_trial()` function.

Usage

get_trial_data()

Value

A data frame of the trial observations data.

Author

Khaled Al-Shamaa, k.el-shamaa@cgiar.org

Examples

if(interactive()) {
  # Configure your server connection
  set_qbms_config("https://bms.icarda.org/ibpworkbench")

  # Login using your account (interactive mode)
  # You can pass your username and password as parameters (batch mode)
  login_bms()

  # Select a crop by name
  set_crop("wheat")

  # Select a breeding program by name
  set_program("Wheat International Nurseries")

  # Select a specific study/trial by name
  set_trial("IDYT39")

  # Retrieve multi-environment trial data
  MET <- get_trial_data()
}