我需要閱讀的表如何在R中導入.tsv文件?
test <- read.table(file='drug_info.tsv')
# Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
# line 1 did not have 10 elements
test <- read.table(file='drug_info.tsv',)
# Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
# line 1 did not have 10 elements
scan("drug_info.tsv")
# Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
# scan() expected 'a real', got 'ChallengeName'
scan(file = "drug_info.tsv")
# Error in scan(file, what, nmax, sep, dec, quote, skip, nlines, na.strings, :
# scan() expected 'a real', got 'ChallengeName'
我應該如何看呢?
請複製/粘貼文件的前5行到您的問題,並刪除圖片。 –
使用缺省設置 – rawr
'read.table'默認使用空格分隔符(通常表示空格或製表符)。如果你有空格,你可以使用'sep =「\ t」'明確地將分隔符設置爲tab。 'read.table'與有效的輸入文件一起工作,所以如果在導入數據時出現問題,它與文件相關,而不是函數。因此,爲了幫助您,我們需要您分享您實際嘗試導入的文件樣本,而不是其他程序中的數據圖片。 – MrFlick