https://www.r-pkg.org/badges/version/rnbp https://cranlogs.r-pkg.org/badges/grand-total/rnbp
The rnbp package is an R wrapper for the National Bank of Poland API: https://api.nbp.pl/
The rnbp package is available on CRAN, you can install it with:
You can install the the development version of rnbp from GitHub with:
library(rnbp)
library(ggplot2)
## Retrieve current C exchange rate table
response <- get_current_exchangerate_table("C")
## Retrieve content from the response
current_exchangerate_table <- response$content$rates[[1]]
ggplot(current_exchangerate_table, aes(x = code, y = bid, fill = code)) +
geom_bar(stat = "identity")
## Retrieve last 20 exchange rates for euros
euros_response <- get_last_n_exchangerates("A", "EUR", 20)
## Retrieve last 20 exchange rates for euros
dollars_response <- get_last_n_exchangerates("A", "USD", 20)
## Retrieve rates data
euros_data <- euros_response$content$rates
dollars_data <- dollars_response$content$rates
## Add currency code columns
euros_data$code <- euros_response$content$code
dollars_data$code <- dollars_response$content$code
currency_data <- rbind(euros_data, dollars_data)
ggplot(currency_data, aes(x = effectiveDate, y = mid, col = code)) +
geom_line() +
geom_point()