I have some vectors I accidentally formatted the entire thing as character and now I can't revert it back into it being a vector. Is there a way to do this without going into regex?
Example
print(df[10])
[1] "c(\"1963-09-16\", \"1969-07-16\")"
print(length(df[10)))
[1] 1
You can try:
Or from a df
Created on 2021-12-07 by the reprex package (v2.0.1)