Convert List to Variable in Dataframe

Hello

I want to convert the list identified in green in the picture to a character or numeric variable in the dataframe.

How can I do it?

See the FAQ: How to do a minimal reproducible example reprex for beginners. It can be very difficult to understand what's going on from just a screenshot.

Here's an outline of this type of problem

set.seed(42)
the_list <- list(as.character(sample(10000:20000,32)))
the_vector <- unlist(the_list)
mtcars$new_var <- the_vector
head(mtcars)
#>                    mpg cyl disp  hp drat    wt  qsec vs am gear carb new_var
#> Mazda RX4         21.0   6  160 110 3.90 2.620 16.46  0  1    4    4   12368
#> Mazda RX4 Wag     21.0   6  160 110 3.90 2.875 17.02  0  1    4    4   15272
#> Datsun 710        22.8   4  108  93 3.85 2.320 18.61  1  1    4    1   19289
#> Hornet 4 Drive    21.4   6  258 110 3.08 3.215 19.44  1  0    3    1   11251
#> Hornet Sportabout 18.7   8  360 175 3.15 3.440 17.02  0  0    3    2   18825
#> Valiant           18.1   6  225 105 2.76 3.460 20.22  1  0    3    1   10355

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.