fstermann / mlr-mini

MIT License
0 stars 2 forks source link

Add utils #33

Open fstermann opened 1 year ago

fstermann commented 1 year ago

Add a utils.R file which contains helper functions which are used in multiple files, e.g.

collapse <- function(x) {
  out <- paste0(names(x), " = ", x)
  out <- paste(out, collapse = ", ")
  out
}