Nothing
# Load testing data
manure_2_indic_DE_2003 <- function() {
df <- withr::with_seed(
seed = 123345,
runif(nrow(manure) , min = 0 , max = 100)) %>%
bind_cols(manure)
names(df)[1] <- 'pct'
df <- df %>%
filter(nchar(geo) == 4) %>%
filter(indic_ag == "I07A_EQ_Y") %>%
select(-indic_ag) %>%
filter(grepl("^DE", geo)) %>%
filter(time == 2003) %>%
select(-time)
return(df)
}
manure_2_indic <- function() {
df <- withr::with_seed(
seed = 12345,
runif(nrow(manure) , min = 0 , max = 100)) %>%
bind_cols(manure)
names(df)[1] <- 'pct'
df <- df %>%
filter(nchar(geo) == 4) %>%
filter(indic_ag == "I07A_EQ_Y") %>%
select(-indic_ag)
return(df)
}
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.