emitanaka / edibble

An R-package that encapsulate elements of experimental design for better planning, management, and workflow
https://edibble.emitanaka.org
Other
215 stars 14 forks source link

non-existent variables #24

Closed emitanaka closed 2 years ago

emitanaka commented 3 years ago

Some functions refer to non-existent variables. E.g. record_vars(unit = c(resp1, resp2) where resp1 and resp2 do not exist. Maybe it is better to change the design to make input into characters instead, e.g. record_vars(unit = c("resp1", "resp2"). So non-existent variables must be explicitly quoted.