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
编辑 正如@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