paste. {broman} | R Documentation |
paste with dot separator
Description
Calls base::paste()
with sep="."
.
Usage
paste.(...)
Arguments
... |
Passed to paste. |
Details
There's not much to this function. It just is
base::paste()
with sep=""
, 'cause I'm lazy.
Value
A character string or vector of character strings.
See Also
base::paste()
,
base::paste0()
,
paste00()
,
paste..()
,
paste0.()
,
paste.0()
Examples
x <- 3
y <- 4
paste.(x, y)
[Package broman version 0.84 Index]