spatstat.utils (version 1.17-0)

commasep: List of Items Separated By Commas

Description

Convert the elements of a vector into character strings and paste them together, separated by commas.

Usage

commasep(x, join = " and ", flatten = TRUE)

Arguments

x

Vector of items in the list.

join

The string to be used to separate the last two items in the list.

flatten

Logical value indicating whether to return a single character string (flatten=TRUE, the default) or a list (flatten=FALSE).

Value

A character string (if flatten=TRUE, the default) or a list of character strings.

Examples

Run this code
# NOT RUN {
   commasep(letters[1:4])
   y <- commasep(sQuote(letters[1:4]))
   cat(y, fill=TRUE) 
# }

Run the code above in your browser using DataLab