I have created an object of unique values:
obj <- c("A", "B", "C", "D", "E")
I would like to print it in the following message:
message("The zones are:", obj,"\n")
but the output all values are joint together:
#The zones are:ABCDE
I would like to have the values comma separated
I also tried print(paste0("The zones are:", obj,"\n"))
but it gives even worse output