Python
库Pandas
允许指定一个字符,该字符用于引用DataFrame.to_csv函数中的字段。
我想在R
中使用类似的功能来使用单引号而不是双引号来引用非数字字段。有没有办法在R
中这样做?
我尝试了write.table和write.csv函数,但没有找到此选项,因此我想知道是否有R
包可以这样做。
最佳答案
这写出iris
的前几行,用双引号替换每个双引号:
writeLines(gsub('"', "'", capture.output(write.csv(head(iris), row.names = FALSE))))
给予:
'Sepal.Length','Sepal.Width','Petal.Length','Petal.Width','Species'
5.1,3.5,1.4,0.2,'setosa'
4.9,3,1.4,0.2,'setosa'
4.7,3.2,1.3,0.2,'setosa'
4.6,3.1,1.5,0.2,'setosa'
5,3.6,1.4,0.2,'setosa'
5.4,3.9,1.7,0.4,'setosa'
只要数据本身没有引号,就应该可以。
关于r - 编写csv时如何在R中指定quotechar?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46755683/