Hi all,
I have multiple lists that needs to be converted to dataframe. I tried with logs_datset <- unlist(json_data2,recursive = F). But it is giving no reference at all. I mean from where file the data was extracted.Can anyone please help me
logs_datset <- unlist(json_data2,recursive = F)
For such task, you could be interested by rectangling feature of tidyr https://tidyr.tidyverse.org/articles/rectangle.html
and purrr tools to iterate on list elements and apply a function to each
If you provide a reprex, we could help you with a working example. Using a screenshot does not help us to do that.
Hope it helps.
This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.