Skip to content

Commit

Permalink
up
Browse files Browse the repository at this point in the history
  • Loading branch information
Natanaelsl committed Jun 14, 2024
1 parent b725145 commit c2f924d
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 26 deletions.
15 changes: 8 additions & 7 deletions R/RGFdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,14 @@
#' library(RREORGFdataR)
#'
#' # Extraindo dados do anexo 1 para o 3º quadrimestre
#' # do RGF de 2020 até 2023 do Estado de Goiás para todos os poderes.
#' df.RGF <- RGFdata(cod.ibge = 52,
#' year = c(2020:2023),
#' power = c('E','L','J','D','M'),
#' period = 3,
#' annex = 1,
#' simplified = FALSE)
#' # do RGF de 2023 do Estado de Goiás para todos os poderes.
#' RGFdata(cod.ibge = 52,
#' year = 2023,
#' power = c('E','L','J','D','M'),
#' period = 3,
#' annex = 1,
#' simplified = FALSE) %>%
#' head(., n = 5)
#'
RGFdata <- function(cod.ibge = NULL, year = NULL, power = NULL, period = NULL, annex = NULL, simplified = FALSE){

Expand Down
13 changes: 7 additions & 6 deletions R/RREOdata.R
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,13 @@
#' library(RREORGFdataR)
#'
#' # Extraindo dados do anexo 1, 6º bimestre
#' # do RREO de 2020 até 2023 do Estado de Goiás.
#' df.RREO <- RREOdata(cod.ibge = 52,
#' year = c(2020:2023),
#' period = 6,
#' annex = 1,
#' simplified = FALSE)
#' # do RREO de 2023 do Estado de Goiás.
#' RREOdata(cod.ibge = 52,
#' year = 2023,
#' period = 6,
#' annex = 1,
#' simplified = FALSE) %>%
#' head(., n = 5)
#'
RREOdata <- function(cod.ibge = NULL, year = NULL, period = NULL, annex = NULL, simplified = FALSE) {
options(error = NULL)
Expand Down
15 changes: 8 additions & 7 deletions man/RGFdata.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

13 changes: 7 additions & 6 deletions man/RREOdata.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit c2f924d

Please sign in to comment.