If all your columns are characters then try this:
# replace text = . with your filename
read.csv(text="A,B,T,T", header=FALSE, stringsAsFactors=FALSE,
colClasses = c("character"))
Else, you'll have to pass the type of each column in colClasses
as: colClasses = c("numeric", "numeric", "character", ...)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…