Nothing
# Eager pipe. Used to make sure the messages of the elemental conversion are printed in the right order.
`%>e%` <- magrittr::pipe_eager_lexical
smart_select_iso3c <- function(gdp) {
gdp %>%
dplyr::select(tidyselect::vars_select_helpers$where(
~ (is.character(.x) || is.factor(.x)) &&
all(nchar(as.character(.x)) == 3) &&
all(.x == toupper(.x))
)) %>%
colnames()
}
smart_select_year <- function(gdp) {
gdp %>%
dplyr::select(tidyselect::vars_select_helpers$where(
~ is.numeric(.x) &&
all(!is.na(.x)) &&
all(nchar(as.character(.x)) == 4)
)) %>%
colnames()
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.