You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
743B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/deprecated.R
  3. \name{parse_formula}
  4. \alias{parse_formula}
  5. \title{Parse a formula}
  6. \usage{
  7. parse_formula(x, f)
  8. }
  9. \arguments{
  10. \item{x}{The variable to test it on}
  11. \item{f}{A formula to parse}
  12. }
  13. \value{
  14. A function to use as a stat/test
  15. }
  16. \description{
  17. Parse a formula defining the conditions to pick a stat/test
  18. }
  19. \details{
  20. Parse a formula defining the conditions to pick a stat/test
  21. and return the function to use.
  22. The formula is to be given in the form of
  23. conditional ~ T | F
  24. and conditions can be nested such as
  25. conditional1 ~ (conditional2 ~ T | F) | F
  26. The FALSE option can be omitted, and the TRUE can be replaced with NA
  27. }
  28. \keyword{deprecated}
  29. \keyword{internal}