Hash - Pair function {Rfast} | R Documentation |
Hash - Pair function.
hash.list(key,x)
key |
The keys of the given values. |
x |
The values. |
This function pairs each item of of key and value make a unique hash table.
Returns the hash-list table.
Manos Papadakis
R implementation and documentation: Manos Papadakis <papadakm95@gmail.com>
x <- hash.list(letters,c(1:26))
x[["a"]]==1