[R] Problems changing to number from character

jim holtman jholtman at gmail.com
Mon Sep 15 20:21:58 CEST 2008


If it is a factor, you have to convert to character first and then numeric:

d <- as.numeric(as.character(b))

On Mon, Sep 15, 2008 at 1:26 PM, Carlos Morales
<carlosmoralesdiego at yahoo.es> wrote:
> Hello all,
>
> First of all, thanks for your examples to calculate the mode value. But now my problem is the next:
>
> I have a factor and I'm trying to convert it to number with as.numeric(x) but when I see the number it's different, I mean if I have:
>
> b<-1,042
> d<-as.numeric(b)
>
> then when I show d, it appears 432 and I want to work with 1,042 because then I want to calculate the median of three values
>
>
> Thanks so much
> Carlos
>
>
>
>
> ______________________________________________
> R-help at 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.
>



-- 
Jim Holtman
Cincinnati, OH
+1 513 646 9390

What is the problem that you are trying to solve?



More information about the R-help mailing list