Erin Hodgess wrote: > Hi again R People: > > This works fine: > >> library(tcltk) >> a <- tclVar("4.5") >> as.numeric(tclvalue(a)) >> > [1] 4.5 > >> #But if you have: >> b <- tclVar("pi") >> as.numeric(tclvalue(b)) >> > [1] NA > Warning message: > NAs introduced by coercion > > > Is anyone aware of a way around this, please? > > Brian already told you: Parse and eval.
> eval(parse(text=as.character(tclvalue(tclVar("pi"))))) [1] 3.141593 (Beware: Depending on the environment in which you eval(), strange things can happen if you use the name of an internal variable in your function) What happened with the Inf issue? I can't reproduce that: > as.numeric(as.tclObj("Inf")) [1] Inf -- O__ ---- Peter Dalgaard Ă˜ster Farimagsgade 5, Entr.B c/ /'_ --- Dept. of Biostatistics PO Box 2099, 1014 Cph. K (*) \(*) -- University of Copenhagen Denmark Ph: (+45) 35327918 ~~~~~~~~~~ - ([EMAIL PROTECTED]) FAX: (+45) 35327907 ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.