R/Object.R
names-set-.tbl_Andromeda.Rd
Set column names of an Andromeda table
# S3 method for tbl_Andromeda names(x) <- value
A reference to a table in an andromeda object. (see examples)
A character vector of new names that must have length equal to the number of columns in the table.
andr <- andromeda(cars = cars) names(andr$cars) <- toupper(names(andr$cars)) names(andr$cars) #> [1] "SPEED" "DIST" # [1] "SPEED" "DIST" close(andr)