search for: 011091e

Displaying 1 result from an estimated 1 matches for "011091e".

Did you mean: 011015
2012 Aug 06
1
How to convert data to 'normal' if they are in the form of standard scientific notations?
...to be in the form like '20110911001084', but I'm very confused why when I used 'as.factor' call it works for my 'Tem1' but not for 'Tem5'...?? Many thanks! HJ > Tem1[1:5,1][1] 2.10004e+12 2.10004e+12 2.10004e+12 2.10004e+12 2.10004e+12> Tem5[1:5,1][1] 2.011091e+13 2.011091e+13 2.011091e+13 2.011091e+13 2.011091e+13> class(Tem1[1:5,1])[1] "numeric"> class(Tem5[1:5,1])[1] "numeric"> as.factor(Tem1[1:5,1])[1] 2.10004e+12 2.10004e+12 2.10004e+12 2.10004e+12 2.10004e+12 Levels: 2.10004e+12> as.factor(Tem5[1:5,1])[1] 201109110010...