ordered_dict | R Documentation |
ordered_dict
creates an ordered dictionary.
ordered_dict(items = NULL, keys = NULL)
items |
a list of items |
keys |
a list of keys, use |
Following methods are exposed:
.$set(key, value) .$get(key, default) .$remove(key, silent = FALSE) .$pop(key, default) .$popitem(last = TRUE) .$has(key) .$keys() .$values() .$update(d) .$clear() .$size() .$as_list() .$print()
key
: scalar character, environment or function
value
: any R object, value of the item
default
: optional, the default value of an item if the key is not found
d
: an ordered_dict object
dict
d <- ordered_dict(list(apple = 5, orange = 10)) d$set("banana", 3) d$get("apple") d$as_list() # the order the item is preserved d$pop("orange") d$as_list() # "orange" is removed d$set("orange", 3)$set("pear", 7) # chain methods
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.