Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私のデータセットでは、記号「。」空白のセルに使用されます。次のコードを操作して、R が "." を処理するようにするにはどうすればよいですか。空白のまま?
ファイル <- read.csv("C:\MyFile.CSV", header=T)
前もって感謝します。
右のセパレータを使用しますsep='.':
sep='.'
read.table(text='a.b.c a.b.c',sep='.') V1 V2 V3 1 a b c 2 a b c
EDIT @Roland が述べたように、OP は「空白」の欠損値を意味するため、ここでna.stringsパラメーターを設定する必要があります。
na.strings
read.table(text='a b c . a b c D',sep='',na ='.') V1 V2 V3 V4 1 a b c <NA> 2 a b c D