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.

26 lines
624B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/build.R
  3. \name{statColumn}
  4. \alias{statColumn}
  5. \title{Generate one statistic for all variables}
  6. \usage{
  7. statColumn(stat, data)
  8. }
  9. \arguments{
  10. \item{stat}{The statistic to use}
  11. \item{data}{The dataframe to apply the statistic to}
  12. }
  13. \value{
  14. A vector for one statistic column
  15. }
  16. \description{
  17. Use one stat function (made safe using statify) on all the data
  18. to produce a single statistics column.
  19. }
  20. \details{
  21. The result is either a numeric vector, or a character vector if
  22. the content of the column is not made entirely of numbers.
  23. }
  24. \keyword{internal}