Skip to content

Commit

Permalink
make functions more flexible!
Browse files Browse the repository at this point in the history
  • Loading branch information
yannikbuhl committed Jan 1, 2025
1 parent 9c5121c commit 9736b65
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions R/gen_cube.R
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ gen_cube_ <- function(name,
classifyingvariable3 = NULL,
classifyingkey3 = NULL,
stand = NULL,
language = Sys.getenv("RESTATIS_LANG")) {
language = Sys.getenv("RESTATIS_LANG"),
...) {

area <- match.arg(area)
database <- match.arg(database)
Expand Down Expand Up @@ -116,7 +117,8 @@ gen_cube_ <- function(name,
classifyingkey3 = classifyingkey3,
stand = stand,
language = language,
job = FALSE)
job = FALSE,
...)

#-------------------------------------------------------------------------------

Expand Down
6 changes: 4 additions & 2 deletions R/gen_table.R
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ gen_table_ <- function(name,
stand = NULL,
language = Sys.getenv("RESTATIS_LANG"),
job = FALSE,
all_character = TRUE) {
all_character = TRUE,
...) {

#-----------------------------------------------------------------------------
# Parameter processing
Expand Down Expand Up @@ -131,7 +132,8 @@ gen_table_ <- function(name,
stand = stand,
language = language,
format = "ffcsv",
job = FALSE)
job = FALSE,
...)

#-----------------------------------------------------------------------------
# Data processing
Expand Down

0 comments on commit 9736b65

Please sign in to comment.