-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathREADME.Rmd
49 lines (36 loc) · 1.24 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# bcR
`bcR` te permite conseguir datos directamente desde el API del BCRP. Eliminando la necesidad de descargar los datos manualmente.
## Instalación
El paquete está disponible únicamente, por el momento, por GitHub. Puedes instalarlo de la siguiente manera:
```{r}
devtools::install_github("https://github.com/Amaru6/bcR")
```
## Ejemplo
```{r}
library(bcR)
library(tidyverse)
consultar_bcrp_api(
codigos = c("PM04862AA") # Si no se incluye el rango de fechas, se extraerá las fechas más recientes.
) -> datos_consultados
datos_consultados # Esta es la respuesta de la API, sobre la cual podemos trabajar
datos_consultados |>
mutate(
`Producto bruto interno y otros indicadores - PBI per cápita (S/ 2007)` = `Producto bruto interno y otros indicadores - PBI per cápita (S/ 2007)` |>
str_replace("\\,", "\\.") |> as.numeric()
) |>
ggplot(aes(x = Fecha,
y = `Producto bruto interno y otros indicadores - PBI per cápita (S/ 2007)`)) +
geom_line(linewidth = 1)
```