Skip to contents

O educabR facilita o acesso a dados educacionais brasileiros do INEP, incluindo IDEB, ENEM e Censo Escolar.

Instalacao

Voce pode instalar a versao de desenvolvimento do educabR pelo GitHub:

# install.packages("devtools")
devtools::install_github("SidneyBissoli/educabR")

Funcionalidades

Dataset Funcao Anos disponiveis
IDEB get_ideb() 2017, 2019, 2021, 2023
ENEM get_enem() 1998-2024
Censo Escolar get_censo_escolar() 1995-2024

Exemplos

IDEB

library(educabR)

# Baixar IDEB 2021 - Anos Iniciais - Escolas
ideb <- get_ideb(
  year = 2021,
  stage = "anos_iniciais",
  level = "escola"
)

ENEM

# Baixar microdados do ENEM 2023
enem <- get_enem(year = 2023)

# Resumo estatistico
enem_summary(enem)

Censo Escolar

# Baixar Censo Escolar 2023
censo <- get_censo_escolar(year = 2023)

Cache

O pacote usa cache local para evitar downloads repetidos:

# Ver arquivos em cache
list_cache()

# Limpar cache
clear_cache()

# Definir diretorio de cache personalizado
set_cache_dir("~/meu_cache")

Licenca

MIT