On Mon, 17 Aug 2009 16:49:53 +0200, Inchallah Yarab <inchallahya...@yahoo.fr> wrote:

Hi,

i export data from an csv file like this :
 Data <- read.csv2("c:/Art.csv",sep=",") # import data into R
Data <- Data [1:5,1:5]# extracting the first 5 rows and columns
Data
  Policy.Number AXA.Entity Country LoB ccy.data
1         6e+13        BNL     BNL   P      EUR
2         6e+13        USA     BNL   P      EUR
3         6e+13         UK     BNL   E      EUR
4         6e+13        USA     BNL   P      EUR
5         6e+13          I     BNL   E      EUR


and i want to have in the first column the number 60000000000000 without using e +13???

someone has an idea please?
Thank you very much for your help!!!


 n <- 60000000000000000000
 n
#[1] 6e+19
 options(scipen=20)
 n
#[1] 60000000000000000000




        [[alternative HTML version deleted]]



--

______________________________________________
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.

Reply via email to