Description Usage Arguments Value Note Author(s) See Also Examples
Used to split strings like "Abc8" into "Abc" and "8".
1 |
data |
The vector of strings to be split. |
charfirst |
Is the string constructed with characters at the start or
numbers? Defaults to |
A data.frame
with two columns, .var
and .time_1
.
This is a helper function for the Stacked()
and Reshape()
functions.
Ananda Mahto
1 2 3 4 5 | x <- paste0("Var", LETTERS[1:3], 1:3)
splitstackshape:::NoSep(x)
y <- paste0(1:3, "Var", LETTERS[1:3])
splitstackshape:::NoSep(y, charfirst = FALSE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.