Nie możesz wybrać więcej, niż 25 tematów Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.

30 lines
551B

  1. % Generated by roxygen2: do not edit by hand
  2. % Please edit documentation in R/process_data_helpers.R
  3. \name{preprocess_data}
  4. \alias{preprocess_data}
  5. \title{Preprocess data}
  6. \usage{
  7. preprocess_data(x, y, by, fill = FALSE)
  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. }
  15. \value{
  16. a preprocessed dataset
  17. }
  18. \description{
  19. Preprocess data
  20. }
  21. \examples{
  22. NULL
  23. test for
  24. a <- c("unique", "mult", "mult", "also unique")
  25. add_duplicate_number(a)
  26. }