lengths | R Documentation |
Get the length of the elements contained in a list.
lengths(alist, out = "vector")
alist |
a list |
out |
string indicating the format of the output
( |
A vector (or list) with the lengths of the elements in
alist
Gaston Sanchez
length
, funlist
# say you have some list
some_list = list(1:3, 4:5, 6:9)
# length of each vector (output in vector format)
lengths(some_list)
# length of each vector (output in list format)
lengths(some_list, out = 'list')
# compare to 'length()'
length(some_list)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.