I hope you can help me with this problem in R:
I have a list like this one (this is dummy data and the real one has like 20 variables and 20 records in the list)...
Name | Type | value
var1 | double[1] | 27.3
var2 | char[1] | 'Texas'
var1 | double[1] | 21.4
var2 | char[1] | 'California'
var3 | double[1] | -1.0
and I would like to put it as a dataframe like this (considering not all records are filled in all variables):
var1 var2 var3
1 27.3 'Texas' NA
2 21.4 'California' -1.0
Any idea of how can I do it?