I have this example data
d<-\"30,3\" class(d)
I have this character objects in one column in my work data frame and I need to be able to
Here is a possibility
> as.numeric(unlist(strsplit("30,3", ","))) # 30 3