Displaying 1 result from an estimated 1 matches for "teamleaderid".
2012 Nov 29
1
Read in alphanumeric column without decimals
All -
How can I read in a column of alphanumeric values without including
".0" on the numeric values?
Original column:
TeamLeaderID
258
342
316
U8
331
279
D1
116
235
296
...
[truncated]
leaders = read.xlsx2('FILE', sheetIndex = 1, header = T)
Column after it's been read in:
leaders$TeamLeaderID
258.0
342.0
316.0
U8
331.0
279.0
D1
116.0
235.0
296.0
...
[truncated]
If I try
as.numeric(leaders$TeamLeaderID), every...