inst/tests/non_test/tasklist_proto.R

#
# vim:set ff=unix expandtab ts=2 sw=2:
evaluator=function(tasklist){
  # This function will evaluate its argument in its
  # own local context
  n=5
  df=data.frame(t_entrySystem=rep(0,n),t_exitSystem=1:n)
  for (name in names(tasklist)){
    tasklist[[name]] <- eval(tasklist[[name]])
  }
  return(tasklist)
}
tasklist=list()
tasklist[["TransitTime"]]=quote(mean(df[,"t_exitSystem"]-df[,"t_entrySystem"]))

results=evaluator(tasklist)
#print(results[["TransitTime"]])

Try the SoilR package in your browser

Any scripts or data that you put into this service are public.

SoilR documentation built on Oct. 13, 2023, 5:06 p.m.