MazamaLocationUtils (version 0.4.3)

table_removeColumn: Remove a column of metadata in a table

Description

Remove the column matching columnName. This function can be used in pipelines.

Usage

table_removeColumn(locationTbl = NULL, columnName = NULL, verbose = TRUE)

Value

Updated tibble of known locations.

Arguments

locationTbl

Tibble of known locations.

columnName

Name of the colun to be removed.

verbose

Logical controlling the generation of progress messages.

See Also

table_addColumn

table_removeColumn

Examples

Run this code
library(MazamaLocationUtils)

# Starting table
locationTbl <- get(data("wa_monitors_500")) 
names(locationTbl)

# Add a new column
locationTbl <-
  locationTbl %>%
  table_addColumn("AQSID")
  
names(locationTbl)

# Now remove it
locationTbl <-
  locationTbl %>%
  table_removeColumn("AQSID")

names(locationTbl)

try({
  # Cannot remove "core" metadata
  locationTbl <-
    locationTbl %>%
    table_removeColumn("longitude")
}, silent = FALSE)

Run the code above in your browser using DataLab