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, ∼1385🔥, 0💬
Popular Posts:
How to start to troubleshoot my Actiontec GT784WNV Modem? I am not able to access Internet. If you a...
How to run Fitbit Connect for the first time and create a new account on Fitbit server? I have Fitbi...
Why I am getting the "Account Frozen" message when login to OneDrive? If you have not used your free...
What contents are stored in a Web Archive (.mht) file? When you convert a word document into a singl...
How to test I/O performance on INTEL SSDPEKKF256G8L SSD (Solid State Disk) with SQLIO? INTEL SSDPEKK...