powered by
Combines the base functions paste0 and message
pm(..., collapse = NULL)
there will be no output from this function. Rather, a message will be generated from the arguments.
one or more R objects, to be converted to character vectors. Input(s) to this argument will be passed onto the paste0 function.
an optional character string to separate the results. Not NA_character_. Input(s) to this argument will be passed onto the paste0 function.
NA_character_
pm("hello", 123) pm(c("hello", 123), collapse = ", ")
Run the code above in your browser using DataLab