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

32 lines
597B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/process_data_helpers.R
  3. \name{process_join}
  4. \alias{process_join}
  5. \title{Preprocess data}
  6. \usage{
  7. process_join(x, y, by, fill = TRUE, ...)
  8. }
  9. \arguments{
  10. \item{x}{a left dataset}
  11. \item{y}{a right dataset}
  12. \item{by}{a by argument for joins / set operations}
  13. \item{fill}{if missing ids should be filled}
  14. \item{...}{further arguments passed to add_color}
  15. }
  16. \value{
  17. a preprocessed dataset
  18. }
  19. \description{
  20. Preprocess data
  21. }
  22. \examples{
  23. NULL
  24. test for
  25. a <- c("unique", "mult", "mult", "also unique")
  26. add_duplicate_number(a)
  27. }