在write.table()
R 中的函数中,是否可以为quote
参数提供一个字符来代替标准双引号 ( "
)?
例如尝试提供单引号'
作为参数:
name sex age height
1 x1 F 18 162
2 x2 M 19 170
3 x3 M 21 178
4 x4 F 22 166
5 x5 F 23 165
write.table('test',data,sep=',',row.names=F,quote="\'")
返回:
write.table("test", data, sep = ",", row.names = F, quote = "\'") 中的错误:'quote' 规范无效