names2 {BBmisc} | R Documentation |
Replacement for names which always returns a vector.
Description
A simple wrapper for names
.
Returns a vector even if no names attribute is set.
Values NA
and ""
are treated as missing and
replaced with the value provided in missing.val
.
Usage
names2(x, missing.val = NA_character_)
Arguments
x |
[ |
missing.val |
[ |
Value
[character
]: vector of the same length as x
.
Examples
x = 1:3
names(x)
names2(x)
names(x[1:2]) = letters[1:2]
names(x)
names2(x)
[Package BBmisc version 1.13 Index]