umx_rot | R Documentation |
umx_rot
rotates the items of a vector (1 place, by default). So: c(1,2,3) -> c(2,3,1)
umx_rot(vec, na.last = FALSE)
vec |
vector to rotate |
na.last |
Whether to set the last value to NA (default = FALSE) |
mxModel()
Other String Functions:
umx_explode_twin_names()
,
umx_explode()
,
umx_grep()
,
umx_names()
,
umx_paste_names()
,
umx_str_chars()
,
umx_str_from_object()
,
umx_trim()
,
umx
umx_rot(1:10)
umx_rot(c(3,4,5,6,7))
# [1] 4 5 6 7 3
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.