Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

32 lines
746B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/process_data_helpers.R
  3. \name{add_color}
  4. \alias{add_color}
  5. \title{Adds Color to a processed data_frame}
  6. \usage{
  7. add_color(x, ids, by, color_header = "#bdbdbd",
  8. color_other = "#d0d0d0", color_missing = "#ffffff")
  9. }
  10. \arguments{
  11. \item{x}{a processed data_frame}
  12. \item{ids}{a vector of ids for the color-matching}
  13. \item{by}{a vector of column names that constitute the by-argument of joins/sets}
  14. \item{color_header}{color for the header}
  15. \item{color_other}{color for "inactive" values}
  16. \item{color_missing}{color for missing values}
  17. }
  18. \value{
  19. the processed data_frame with a new column .color
  20. }
  21. \description{
  22. Adds Color to a processed data_frame
  23. }
  24. \examples{
  25. NULL
  26. }