Problem:
Naming the elements of a Vector
Solution:
To give a name to the elements of a vector, we can use the names() function.
For example,
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Naming the Elements of a Vector | |
employee <- c("John", "HR") | |
names(employee) <- c("Name","Department") | |
print(employee) |
This code first creates a vector named “employee” and then gives the two elements a name. The first element is the “Name” and the second element is named as “Department”. The above piece of code gives the output as below:
You may also like:
Thank You for reading!