简体   繁体   中英

Importing long character field with numbers with read.table()

I try to import a large data set with a column representing a document number. This field contains a number with leading zeros of 25 digits. I tried to import the data using read.table(), but got for this specific field always "1e+19", even when assigning "character" as class during the import.

# import elyte
colnames<-c("patnr","name","birthday","sex","casenr","Bew","Art","docnr","date","time","none","Na","K","Cl","Ca","corCa")
classes <- rep("character",length(colnames))
ELYTE <- read.table(file="ELYTE.TXT",skip=3,comment.char="",sep="|",col.names=colnames, header=FALSE, colClasses=classes)

The original data looks like this: 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011524|20000127|084800||140|3.7|100|2.1| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011541|20000127|080200|||||| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011562|20000127|101800||140|4.6|101|2.2| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011579|20000127|134500||138|4.0||2.2| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011591|20000128|084200||138|3.6|98|2.1| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011593|20000128|085900|||||| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011653|20000129|093400||140|4.2|99|2.2| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011717|20000129|094100||||||

What I get is the following:

patnr name birthday sex casenr Bew Art docnr date time none Na K Cl Ca corCa

1 0010000005 Weber 19091220 1 0000337340 00000 LAB 1e+19 20000127 084800 140 3.7 100 2.1
2 0010000005 Weber 19091220 1 0000337340 00000 LAB 1e+19 20000127 080200
3 0010000005 Weber 19091220 1 0000337340 00000 LAB 1e+19 20000127 101800 140 4.6 101 2.2
4 0010000005 Weber 19091220 1 0000337340 00000 LAB 1e+19 20000127 134500 138 4.0 2.2
5 0010000005 Weber 19091220 1 0000337340 00000 LAB 1e+19 20000128 084200 138 3.6 98 2.1
6 0010000005 Weber 19091220 1 0000337340 00000 LAB 1e+19 20000128 085900

How can I prevent the transformation of the "docnr" to "1e+19"?

... for example by setting the column to type character , just like you did:

txt <- "0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011524|20000127|084800||140|3.7|100|2.1| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011541|20000127|080200|||||| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011562|20000127|101800||140|4.6|101|2.2| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011579|20000127|134500||138|4.0||2.2| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011591|20000128|084200||138|3.6|98|2.1| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011593|20000128|085900|||||| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011653|20000129|093400||140|4.2|99|2.2| 0010000005|Weber|19091220|1|0000337340|00000|LAB|0000010000000000000011717|20000129|094100||||||"
txt <- gsub(" ", "\n", txt)
colnames<-c("patnr","name","birthday","sex","casenr","Bew","Art","docnr","date","time","none","Na","K","Cl","Ca","corCa")
classes <- rep("character",length(colnames))
ELYTE <- read.table(text = txt, skip=3,comment.char="", sep="|", col.names=colnames, header=FALSE, colClasses=classes)
ELYTE
# patnr  name birthday sex     casenr   Bew Art                     docnr     date   time none  Na   K Cl  Ca corCa
# 1 0010000005 Weber 19091220   1 0000337340 00000 LAB 0000010000000000000011579 20000127 134500      138 4.0    2.2      
# 2 0010000005 Weber 19091220   1 0000337340 00000 LAB 0000010000000000000011591 20000128 084200      138 3.6 98 2.1      
# 3 0010000005 Weber 19091220   1 0000337340 00000 LAB 0000010000000000000011593 20000128 085900                          
# 4 0010000005 Weber 19091220   1 0000337340 00000 LAB 0000010000000000000011653 20000129 093400      140 4.2 99 2.2      
# 5 0010000005 Weber 19091220   1 0000337340 00000 LAB 0000010000000000000011717 20000129 094100                          

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM