RandomName {SeuratObject} | R Documentation |
Generate a random name
Description
Make a name from randomly sampled characters, pasted together with no spaces
Usage
RandomName(length = 5L, chars = letters, ...)
Arguments
length |
How long should the name be |
chars |
A vector of 1-length characters to use to generate the name |
... |
Extra parameters passed to |
Value
A character with nchar == length
of randomly sampled letters
See Also
Examples
set.seed(42L)
RandomName()
RandomName(7L, replace = TRUE)
[Package SeuratObject version 5.0.2 Index]