getFormulae.Rd 764 B

12345678910111213141516171819202122232425
  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/tools.R
  3. \name{getConfirmedFormula}
  4. \alias{getConfirmedFormula}
  5. \alias{getNonRejectedFormula}
  6. \title{Export Boruta result as a formula}
  7. \usage{
  8. getConfirmedFormula(x)
  9. getNonRejectedFormula(x)
  10. }
  11. \arguments{
  12. \item{x}{an object of a class Boruta, made using a formula interface.}
  13. }
  14. \value{
  15. Formula, corresponding to the Boruta results.
  16. \code{getConfirmedFormula} returns only Confirmed attributes, \code{getNonRejectedFormula} also adds Tentative ones.
  17. }
  18. \description{
  19. Functions which convert the Boruta selection into a formula, so that it could be passed further to other functions.
  20. }
  21. \note{
  22. This operation is possible only when Boruta selection was invoked using a formula interface.
  23. }