Paul Smith wrote: >>x <- expression(62/100) >>as.numeric(as.character(x)) > > [1] NA > Warning message: > NAs introduced by coercion > > Any idea about how to deal with the second case? > eval-uate the expression: > x <- expression(62/100) > eval(x) [1] 0.62 Barry