library(tidyverse)
dat = tibble(
x = c("a", "b"),
y = list(c(1,2,3), c(2,3,4))
)
dat
#> # A tibble: 2 x 2
#> x y
#> <chr> <list>
#> 1 a <dbl [3]>
#> 2 b <dbl [3]>
dat |>
unnest(y) |>
ggplot(aes(x = x, y = y)) +
geom_point()
Hello nirgrahamuk.
Agree that this is no summary for the moment but this is a starting point to analyze log files for an internal software that fails sometime and we need to know why.