You can use as.numeric() method. It will return the numerical value of the string.
E.g.
> a <- c("0.34", "0.12", "0.45")> b <- as.numeric(a)> b[1] 0.34 0.12 0.45