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

12 lines
313B

  1. record_problems <- function(x, path, label) {
  2. if (nrow(problems(x)) == 0) {
  3. return(invisible())
  4. }
  5. problem_dir <- here::here("..", "problems")
  6. problem_path <- path(problem_dir, label, ext = "csv")
  7. dir_create(problem_dir)
  8. write_csv(problems(x), problem_path, append = file_exists(problem_path))
  9. }