Removes a column and all the data in it. This cannot be undone,
so seatable_delete_column() takes the internal column key rather than
its name: looking the key up with
seatable_columns(table, include_key = TRUE) is a deliberate speed bump.
Usage
seatable_delete_column(
table,
column_key,
base = NULL,
con = default_connection()
)Arguments
Examples
if (FALSE) { # \dontrun{
cols <- seatable_columns("neurons", include_key = TRUE, con = con)
key <- cols$key[cols$name == "scratch"]
seatable_delete_column("neurons", key, con = con)
} # }