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, ∼1440🔥, 0💬
Popular Posts:
What are those search options provided on Library Genesis? Library Genesis provides 3 types of searc...
How register my Fitbit device through Fitbit Connect? I have an account with Fitbit server, installe...
Where to find answers to frequently asked questions on Adobe FrameMaker? I want to know how to know ...
How to download and install older versions of Microsoft Office on my Mac computer? I am running macO...
What are different versions of Microsoft PowerPoint? As of 2016, Microsoft PowerPoint has been relea...