> data2 <- read.table("./Phospho (STY)Sites.txt",header = T,sep = "\t")
Warning messages:
1: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec, :
EOF within quoted string
2: In scan(file = file, what = what, sep = sep, quote = quote, dec = dec, :
读取的项目数必需是列数的倍数
> data2 <- read.table("./Phospho (STY)Sites.txt",header = T,sep = "\t",quote = F)
Error in read.table("/Users/sjy/Desktop/Work/Multiomics.large-cell carcinoma/1.2.phospho_QC/0.test.maxquant/LCC_results/LCC2-txt/Phospho (STY)Sites.txt", :
invalid quote symbol set
修改方法:
把read.table()里的quote删了就可以了。用法为传递char,quote=“”。