## code to prepare `credito` dataset goes here
data(credit_data, package = "modeldata")
credito <- credit_data %>%
dplyr::rename(
status = Status,
tempo_empresa = Seniority,
moradia = Home,
tempo_emprestimo = Time,
idade = Age,
estado_civil = Marital,
registros = Records,
trabalho = Job,
despesas = Expenses,
renda = Income,
ativos = Assets,
dividas = Debt,
valor_emprestimo = Amount,
preco_do_bem = Price
) %>%
dplyr::mutate(
status = ifelse(status == "good", "bom", "ruim"),
moradia = dplyr::case_when(
is.na(moradia) ~ NA_character_,
moradia == "ignore" ~ NA_character_,
moradia == "other" ~ "outras",
moradia == "owner" ~ "própria",
moradia == "parents" ~ "pais",
moradia == "priv" ~ "priv",
moradia == "rent" ~ "alugada",
TRUE ~ "ERRADO"
),
registros = ifelse(registros == "yes", "sim", "não"),
estado_civil = dplyr::case_when(
is.na(estado_civil) ~ NA_character_,
estado_civil == "divorced" ~ "divorciada(o)",
estado_civil == "married" ~ "casada(o)",
estado_civil == "separated" ~ "separada(o)",
estado_civil == "single" ~ "solteira(o)",
estado_civil == "widow" ~ "viúva(o)",
TRUE ~ "ERRADO"
),
trabalho = dplyr::case_when(
is.na(trabalho) ~ NA_character_,
trabalho == "fixed" ~ "fixo",
trabalho == "freelance" ~ "autônomo",
trabalho == "others" ~ "outros",
trabalho == "partime" ~ "meio período",
TRUE ~ "ERRADO"
)
)
readr::write_rds(credito, "inst/extdata/credito.rds", compress = "xz")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.