listr {diyar} | R Documentation |
Grammatical lists.
Description
A convenience function to format atomic
vectors as a written list.
Usage
listr(x, sep = ", ", conj = " and ", lim = Inf)
Arguments
x |
|
sep |
Separator. |
conj |
Final separator. |
lim |
Elements to include in the list. Other elements are abbreviated to |
Value
character
.
Examples
listr(1:5)
listr(1:5, sep = "; ")
listr(1:5, sep = "; ", conj = " and")
listr(1:5, sep = "; ", conj = " and", lim = 2)
[Package diyar version 0.5.1 Index]