Downloads and processes data from CAPES (Coordenacao de Aperfeicoamento de Pessoal de Nivel Superior) on Brazilian graduate programs (stricto sensu). Data is retrieved from the CAPES Open Data Portal via the CKAN API.
Usage
get_capes(
year,
type = c("programas", "discentes", "docentes", "cursos", "catalogo"),
n_max = Inf,
keep_file = TRUE,
quiet = FALSE
)Arguments
- year
The year of the data (2013-2024).
- type
The type of data to download. One of:
"programas": Graduate programs"discentes": Students"docentes": Faculty"cursos": Courses"catalogo": Theses and dissertations catalog
- n_max
Maximum number of rows to read. Default is
Inf(all rows).- keep_file
Logical. If
TRUE, keeps the downloaded file in cache. Default isTRUE.- quiet
Logical. If
TRUE, suppresses progress messages.
Details
CAPES is the federal agency responsible for evaluating and regulating graduate programs in Brazil. The data covers stricto sensu programs (master's and doctoral).
The data types include:
programas: Program identifiers, area, evaluation scores
discentes: Student enrollment, demographics, scholarship status
docentes: Faculty information, qualifications, employment
cursos: Course details, modality, start dates
catalogo: Catalog of theses and dissertations
Important notes:
Data is sourced from the CAPES Open Data Portal (CKAN), not INEP.
Files are large CSV files. Downloading may take several minutes.
Column names are standardized to lowercase with underscores.
Internet connection is required to discover download URLs via the CKAN API before downloading.