dvkirankumar wrote: > > I am trying to get a value from a dataset in data set its stored as 001 > but while i am trying to retreave it its giving as 1 can any one help me > to retreave it as 001 >
I have to guess if you used a boomerang or a sling to retrieve your data. My blind guess is you used read.table, or odbc. Assuming read.table: use the parameter colClasses to force that column to be read in as a string instead of a number. The function uses the first few lines to guess the data type, which can be wrong. Dieter -- View this message in context: http://n4.nabble.com/Problem-with-retreaving-numeric-data-tp1476934p1476943.html Sent from the R help mailing list archive at Nabble.com. ______________________________________________ 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.