Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pedrocostaferreira/BETS
It provides access to and information about the most important Brazilian economic time series - from the Getulio Vargas Foundation <http://portal.fgv.br/en>, the Central Bank of Brazil <http://www.bcb.gov.br> and the Brazilian Institute of Geography and Statistics <http://www.ibge.gov.br>. It also presents tools for managing, analysing (e.g. generating dynamic reports with a complete analysis of a series) and exporting these time series.
https://github.com/pedrocostaferreira/BETS
brazil time-series
Last synced: 1 day ago
JSON representation
It provides access to and information about the most important Brazilian economic time series - from the Getulio Vargas Foundation <http://portal.fgv.br/en>, the Central Bank of Brazil <http://www.bcb.gov.br> and the Brazilian Institute of Geography and Statistics <http://www.ibge.gov.br>. It also presents tools for managing, analysing (e.g. generating dynamic reports with a complete analysis of a series) and exporting these time series.
- Host: GitHub
- URL: https://github.com/pedrocostaferreira/BETS
- Owner: pedrocostaferreira
- Created: 2016-05-06T19:25:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2020-05-28T17:38:36.000Z (over 4 years ago)
- Last Synced: 2024-08-03T06:03:41.747Z (3 months ago)
- Topics: brazil, time-series
- Language: R
- Homepage: https://cran.r-project.org/web/packages/BETS/index.html
- Size: 43.9 MB
- Stars: 31
- Watchers: 16
- Forks: 6
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status](https://travis-ci.org/pedrocostaferreira/BETS.svg?branch=master)](https://travis-ci.org/pedrocostaferreira/BETS) [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/BETS)](https://CRAN.R-project.org/package=BETS) [![downloads](http://cranlogs.r-pkg.org/badges/BETS)](http://cran.rstudio.com/web/packages/BETS/index.html)
![Build Status](https://ci.appveyor.com/api/projects/status/github/pedrocostaferreira/BETS?branch=master&svg=true)# DEPRECATED!!! please, go to: ![https://github.com/nmecsys/BETS](https://github.com/nmecsys/BETS)
# BETS - Brazilian Economic Times Series
## Installation
```R
install.packages("BETS")
```
## Usage```R
library(BETS)
```
## WarningThe last version of RMySQL is not working properly, therefore, if you install it along with BETS, some functions won't work. To solve it, do the following:
```R
remove.packages(c("RMySQL","DBI"))
install.packages("devtools")
devtools::install_version("DBI", version = "0.5", repos = "http://cran.us.r-project.org")
devtools::install_version("RMySQL", version = "0.10.9", repos = "http://cran.us.r-project.org")
```