db <- star_database(mrs_cause_schema, ft_num) |>
set_attribute_names(
name = "where",
new = c(
"Region",
"State",
"City"
)
)
db <- star_database(mrs_cause_schema, ft_num) |>
set_attribute_names(name = "where",
old = "REGION",
new = "Region")
new <- "Region"
names(new) <- "REGION"
db <- star_database(mrs_cause_schema, ft_num) |>
set_attribute_names(name = "where",
new = new)
ft <- flat_table('iris', iris) |>
set_attribute_names(
old = 'Species',
new = 'species')
new <- "species"
names(new) <- "Species"
ft <- flat_table('iris', iris) |>
set_attribute_names(
new = new)
Run the code above in your browser using DataLab