library(tidyverse)
# rotulos -------------
rotulos <- read_csv("data/anotacoes-2020-03-08.csv") %>%
rename(rotulo = athos) %>%
select(id, rotulo) %>%
filter(!rotulo %in% c("Rever dados")) %>%
mutate(
rotulo = case_when(
rotulo %in% "Saudável" ~ "Saudável",
TRUE ~ "Empoçamento"
)
)
write_rds(rotulos, "data/rotulos.rds")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.