inline.data.frame() converts a vector of strings that contain
separated items into a data frame.
Examples
inline.data.frame(
"letters; numbers",
"A; 1",
"B; 2",
NULL) # this last line allows for easy switching of line order
#> # A tibble: 2 × 2
#> letters numbers
#> <chr> <int>
#> 1 A 1
#> 2 B 2
inline.data.frame(c("letters; numbers", "A; 1", "B; 2"))
#> # A tibble: 2 × 2
#> letters numbers
#> <chr> <int>
#> 1 A 1
#> 2 B 2