spaste {WGCNA} | R Documentation |
Space-less paste
Description
A convenient wrapper for the paste
function with sep=""
.
Usage
spaste(...)
Arguments
... |
standard arguments to function |
Value
The result of the corresponding paste
.
Note
Do not use the sep
argument. Using will lead to an error.
Author(s)
Peter Langfelder
See Also
Examples
a = 1;
paste("a=", a);
spaste("a=", a);
[Package WGCNA version 1.72-5 Index]