R/response_evds2.R

Defines functions convert_list_df_evds2

convert_list_df_evds2 <- function(items) {
  lines_ <- NULL
  for (item in items) {
    line <- getLineEvdsResponse2(item)
    if (is.null(lines_)) {
      try({
        lines_ <- as.data.frame(line)
      })
    } else {
      try({
        lines_ <- rbind(lines_, line)
      })
    }
  }
  tb <- tibble::as_tibble(lines_)
  tb
}

Try the Rapi package in your browser

Any scripts or data that you put into this service are public.

Rapi documentation built on May 29, 2024, 2:34 a.m.