Returns the labels of the shiny inputs for the provided object.
Examples
df <- data.frame(
name = c("Alice", "Bob"),
age = c(25, 30),
completed = c(TRUE, FALSE)
)
get_input_labels(df)
#> [1] "name" "age" "completed"
Returns the labels of the shiny inputs for the provided object.
df <- data.frame(
name = c("Alice", "Bob"),
age = c(25, 30),
completed = c(TRUE, FALSE)
)
get_input_labels(df)
#> [1] "name" "age" "completed"