After add new code, things cannot knit out

94 Views Asked by At

I met a wired situation. After add new code The code cannot knit out.

function_name <- function (...)
{
  output <- if (output_format == "list") {
    evolved.ts
  } else if (output_format == "tsibble") {
    as.tsibble(evolved.ts)
  }
  return(output)
}
1

There are 1 best solutions below

6
On BEST ANSWER

You could read the arguments with args <- list(...):

function_name <- function (...)
{
  args <- list(...)
  # Code
  output <- if (args$output_format == "list") {
    evolved.ts
  } else if (output_format == "tsibble") {
    as.tsibble(evolved.ts)
  }
  return(output)
}