read_capes_data {capesR} | R Documentation |
Read and filter data from the CAPES Catalog of Theses and Dissertations
Description
This function combines data from multiple Parquet files and applies optional filters, including text-based searches.
Usage
read_capes_data(files, filters = list())
ler_dados_capes(files, filters = list())
Arguments
files |
A vector or list of paths to Parquet files. |
filters |
A list of filters to apply (e.g., list(base_year = 1987, state = "SP", title = "education")). |
Value
A 'data.frame' containing the combined and filtered data.
Examples
# Download data for the years 1987 and 1990
capes_files <- download_capes_data(c(1987, 1990))
# Combine all selected data
combined_data <- read_capes_data(capes_files)
[Package capesR version 0.1.0 Index]