I tried to parse this tsv file using reader::read_tsv
but I keep getting error of parsing failures. Then I realised that the tsv contained some unusual characters, when I used python to read the file it says encoding='cp1252'
I have tried using these:
writeLines(iconv(readLines("Evaluations (1).tab"), from = "cp1252", to = "UTF8"), file("test2.tab", encoding="UTF-8"))
read.delim("Evaluations (1).tab", sep = "\t", encoding = "Windows-1252")
read.table("Evaluations (1).tab", header=TRUE, sep="\t", fileEncoding="CP1252")
none worked.
Can someone take a look at this tab file and guide me how I can parse this?
Thanks!!!