在R

时间:2017-06-01 03:40:27

标签: r data-manipulation

我在R中的数据框有一个列A,其中我有字符串数据,其中包含单引号。

Column A
'Hello World'
'Hi World'
'Good morning world'

我想做的是用双引号替换单引号并实现如下输出。

Column A
"Hello World"
"Hi World"
"Good morning world

这可以实现吗? 提前感谢您的阅读。

1 个答案:

答案 0 :(得分:1)

试试这个:

“iris”是一个示例数据框,我正在尝试替换“Species”列的单引号。由于'和'是字符串中的特殊字符,因此它们是使用转义序列指定的:

iris$Species <- gsub("\'","\"", iris$Species)