Categories:
Cloud (204)
Entertainment (11)
Facebook (43)
General (50)
Life (31)
Programming (64)
Technology (430)
Testing (4)
Tools (488)
Twitter (5)
Wearable (26)
Web Design (44)
Collections:
Other Resources:
Data Structure - Named Vector
What is a named vector?
✍: FYIcenter.com
A named vector is a special vector where each member
has a unique name.
A name vector is an associated array in many other programming language.
1. Create a named vector object with the name() function -
> v = c("Apple", "Banana", "Orange")
> v
[1] "Apple" "Banana" "Orange"
> names(f) = c("First", "Second", "Third")
> v
First Second Third
"Apple" "Banana" "Orange"
2. Get members by index and by name -
> v["Second"] Second "Banana" > f[2] Second "Banana"
2023-06-11, 1251🔥, 0💬
Popular Posts:
What is "Microsoft Access Outlook Add-in for Data Collection and Publishing" COM Add-in in Outlook 2...
How to create a new PowerPoint Template? I have created a slide master and some useful slide layouts...
Where to find answers to frequently asked questions about Adobe Flash Player? I want to understand m...
How to pause file transfer in FileZilla FTP Client? I want to close the computer in the middle of a ...
How headers and footers are repeated in Microsoft Word? Why I see some headers and footers are repea...