I have a dataframe with 50 columns in that 25 columns are of type list. How can I convert them to final single dataframe with type as integer
I am doing it with
df_list=names(which(sapply(df,is.list))
df_list=df[df_list]
do.call("rbind",df_list)
But it does not do the conversion. How can I do it?