R Create Data Frame where a Column is a List (Example) | Different Variable Types | data.frame & I()

preview_player
Показать описание
R code of this video:

my_var <- 1:3 # Create vector
my_var # Print vector

my_list <- list(1:5, letters[1:3], 5) # Create list
my_list # Print list

Follow me on Social Media:
Рекомендации по теме
Комментарии
Автор

Awesome, First time I learn about this!

agsoutas
Автор

thnks alot for this video, it was very helpuf!! . I have a question, if I want to write the final dataframe for read it later what format have i use

danny-hjec
Автор

can you tell me how to do it the other way round...? I have accidentally made one of the columns in my data frame, a list. I would like it to not be a list

aayushimittal