car {libbib} | R Documentation |
Return first element of vector
Description
Takes a vector and returns the first element
Equivalent to Lisp's car
function
Usage
car(x)
Arguments
x |
A vector |
Details
Originally for use as a reduction function in split_map_filter_reduce
Value
Returns first element of vector
See Also
Examples
car(c(8, 6, 7, 5, 3, 0, 9)) # 8
mt <- as.data.table(mtcars)
dt_del_cols(mt, "cyl", "disp", "hp")
[Package libbib version 1.6.4 Index]