I have a data set that contains a column called calories but all the values start with a "[". We want to do numerical analysis, but the [ is impeding that. We've tried with both gsub and regex.
Currently, our data looks like this:
Calories
[235
[456
[876
And we would like to make it look like this:
Calories
235
456
876
Many thanks!