Nothing
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
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.