https://github.com/ipea/aebdata
R package to download data from Atlas do Estado Brasileiro
https://github.com/ipea/aebdata
Last synced: 8 months ago
JSON representation
R package to download data from Atlas do Estado Brasileiro
- Host: GitHub
- URL: https://github.com/ipea/aebdata
- Owner: ipea
- License: gpl-3.0
- Created: 2024-06-29T19:26:50.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2025-02-03T17:34:27.000Z (over 1 year ago)
- Last Synced: 2025-10-22T03:53:08.959Z (8 months ago)
- Language: R
- Homepage: https://ipea.github.io/aebdata/
- Size: 1.97 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.Rmd
- Changelog: NEWS.md
- License: LICENSE.md
Awesome Lists containing this project
README
---
output: github_document
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# aebdata
[](https://github.com/ipea/aebdata/actions/workflows/R-CMD-check.yaml)
The package aebdata is part of an effort by the [Atlas do Estado Brasileiro](https://www.ipea.gov.br/atlasestado/) to facilitate people's access to Brazilian data so that anyone can conduct their analysis. The data, available in .csv format within the series, can now be downloaded directly from R.
## Installation
There are three methods to install the aebdata package: one from CRAN and two from [GitHub](https://github.com/):
``` r
# CRAN
install.packages("aebdata")
# GitHub
# The first is a more verbose and human-readable way, using pak:
# install.packages("pak")
pak::pkg_install("ipea/aebdata")
# The second is a lighter and more programmatic version:
# install.packages("remotes")
remotes::install_github("ipea/aebdata")
```