También puede utilizar:
read.delim('thefile.txt', header= T, fileEncoding= "windows-1252")
Basta con introducir el comando en su R consola:
> read.delim
function (file, header = TRUE, sep = "\t", quote = "\"", dec = ".",
fill = TRUE, comment.char = "", ...)
read.table(file = file, header = header, sep = sep, quote = quote,
dec = dec, fill = fill, comment.char = comment.char, ...)
revela que read.delim
es un empaquetado read.table
comando que ya especifica pestañas como el separador de tus datos read.delim
puede ser más conveniente si está trabajando con muchos archivos tsv.
La diferencia entre los dos comandos se trata con más detalle en in this Stack question.