All Projects โ†’ nmecsys โ†’ BETS

nmecsys / BETS

Licence: GPL-3.0 License
Package to obtain and analyze thousands of Brazilian economic time series

Programming Languages

r
7636 projects

Labels

Projects that are alternatives of or similar to BETS

react-double-marquee
A React marquee component that smoothly loops content.
Stars: โœญ 24 (-29.41%)
Mutual labels:  package
laravel-any
๐Ÿ“ Laravel collection macro that determine if `any` item from the collection passes the given truth test.
Stars: โœญ 38 (+11.76%)
Mutual labels:  package
angular-loading-button
Loading button directive for AngularJS
Stars: โœญ 27 (-20.59%)
Mutual labels:  package
action-autotag
Automatically generate a new tag when the manifest file (package.json, Dockerfile, custom file, etc) version changes.
Stars: โœญ 45 (+32.35%)
Mutual labels:  package
Ragnarok
Virus Package ( For Educational Purposes )
Stars: โœญ 23 (-32.35%)
Mutual labels:  package
create-npm-package
Creates an npm package boilerplate that you don't have to write again ๐Ÿ“ฆ
Stars: โœญ 21 (-38.24%)
Mutual labels:  package
normalize-pkg
Normalize values in package.json to improve compatibility, programmatic readability and usefulness with third party libs.
Stars: โœญ 18 (-47.06%)
Mutual labels:  package
manjaro-sway
๐Ÿšง manjaro linux with wayland ๐Ÿ–ผ, sway ๐ŸŒด and a lot of โ™ฅ
Stars: โœญ 326 (+858.82%)
Mutual labels:  package
grammarly
Grammarly API interface
Stars: โœญ 87 (+155.88%)
Mutual labels:  package
caption-core
Caption Core acts as an abstraction layer for Captionโ€™s core functionality.
Stars: โœญ 33 (-2.94%)
Mutual labels:  package
pidesktop
Collected files, drivers and documentation for the pidesktop case
Stars: โœญ 26 (-23.53%)
Mutual labels:  package
get-installed-path
Get locally or globally installation path of given package name.
Stars: โœญ 39 (+14.71%)
Mutual labels:  package
atom-package-sync
Synchronize your atom packages and settings easily
Stars: โœญ 22 (-35.29%)
Mutual labels:  package
Arch-Data-Science
Archlinux PKGBUILDs for Data Science, Machine Learning, Deep Learning, NLP and Computer Vision
Stars: โœญ 92 (+170.59%)
Mutual labels:  package
fusen
Inflate your package from a simple flat Rmd
Stars: โœญ 99 (+191.18%)
Mutual labels:  package
ReplAPI.it-NodeJS
[DEPRECIATED] ๐™€๐™ซ๐™š๐™ง๐™ฎ๐™ฉ๐™๐™ž๐™ฃ๐™œ ๐™๐™š๐™ฅ๐™ก๐™ž๐™ฉ, ๐™–๐™ก๐™ก ๐™–๐™ฉ ๐™ฎ๐™ค๐™ช๐™ง ๐™™๐™ž๐™จ๐™ฅ๐™ค๐™จ๐™–๐™ก. This is the single most extensive Replit package, allowing you to access various parts of the site with just a few classes and methods. Maintained by @RayhanADev.
Stars: โœญ 32 (-5.88%)
Mutual labels:  package
menu button
Flutter plugin to display a popup menu button widget with handsome design and easy to use.
Stars: โœญ 64 (+88.24%)
Mutual labels:  package
laravel-meta
a package for working with models meta in laravel
Stars: โœญ 78 (+129.41%)
Mutual labels:  package
dynamic-utils
Utility functions to perform dynamic operations on Android.
Stars: โœญ 86 (+152.94%)
Mutual labels:  package
ContactEtc
Laraval package to instantly add a customisable contact form to your site.
Stars: โœญ 21 (-38.24%)
Mutual labels:  package

BETS

Build Status Build Status CRAN_Status_Badge downloads Github Stars GitHub repo size in bytes CRAN

Screenshot

โ— Please read this carefully before using the latest BETS version (0.4.4)

The package went through considerable changes.

BETS - Brazilian Economic Times Series

Installation

# cran version
install.packages("BETS") 
# dev version
devtools::install_github("nmecsys/BETS")

Usage

library(BETS)

โ— Important (update 0.4.2)

  1. BETS package underwent major changes in response to R Journal's reccomendations:
    • New function names (see table below)
    • Database onnection credentials are now encrypted
    • Sample data was included in /data, to allow the user to run examples even when offline, or when our server is down.
Old name New name
BETS.search BETSsearch
BETS.get BETSget
BETS.chart chart
BETS.save.sas saveSas
BETS.save.stata saveStata
BETS.save.spss saveSpss
BETS.corrgram corrgram
BETS.dashboard dashboard
BETS.deflate deflate
BETS.dummy dummy
BETS.grnn.test grnn.test
BETS.grnn.train grnn.train
BETS.normalize normalize
BETS.predict predict
BETS.report report
BETS.sidra.get sidraGet
BETS.sidra.search sidraSearch
BETS.std_resid std_resid
BETS.t_test t_test
BETS.ur_test ur_test
  1. Package forecast's newest version (8.3) contains a bug in ndiffs. An error arises when trying to run Augmented Dickey-Fuller (ADF) tests. Therefore, BETS' report function does not work properly if the user opt for SARIMA analysis with ADF tests. A solution is to install forecast 8.2:
remove.packages("forecast")
install.packages("devtools")
devtools::install_version("forecast", version = "8.2", type = "source")

Using BETS in python

import rpy2.robjects as ro
import pandas as pd
from rpy2.robjects.packages import importr
from rpy2.robjects import pandas2ri
from rpy2.robjects.conversion import localconverter


# Getting Industrial Production (2002 = 100) - Rio de Janeiro

bets = importr("BETS")
dados = bets.BETSget(code=11081, data_frame=True)


with localconverter(ro.default_converter + pandas2ri.converter):
    pim_rj = ro.conversion.rpy2py(dados)

print(pim_rj)
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].