R/getExpID_1.R

GetExpID_for_N_Combined <- function()
{
#################################################################################################
# Purpose:
# To obtain list of experiment ID
# Input:- HarvestData file of SUGARBAG Database
# Output:-
# # Only includes IDs for which both planting date, experiment Design, and Measurned variable information is available
################################################################################################
  data(ExperimentDesign)
 ExpID_with_N_combined <- ExperimentDesign[ !(is.na(ExperimentDesign$Ncombined)),]
  result<-unique( as.vector( ExpID_with_N_combined$ExpID ) )
  return(result)
}
ebimodeling/sugarbag documentation built on May 15, 2019, 7:32 p.m.