I have data in which one column has a string value in all the rows of that column like.
list(id = '123', status = c('xyz', 'abc', 'pqrs', 'tuvw'))
To convert it into a list, I'm using.
eval(parse(text = "xyz$a))
But it's returning only the value of the first row, and I want to change it for the whole column. I tried using a for loop, but except for the first row, it generates "NULL."