gpt4 book ai didi

r - 将字符串连接到数据框列

转载 作者:行者123 更新时间:2023-12-02 09:29:37 25 4
gpt4 key购买 nike

我想将相同的字符串附加到 data.frame。

> df1 <- data.frame(pt1="a", pt2="b", row.names=1)
> df1
pt1 pt2
1 a b

因此,我想要:
   pt1                 pt2
1 Add this string a Add this string b

最佳答案

我们可以使用 lapply

df1[] <- lapply(df1, function(x) paste('Add this string', x))

或者使用 Map
df1[] <- Map(paste, 'Add this string', df1)

或者
library(dplyr)
df1 %>%
mutate_each(funs(paste('Add this string', .)))

关于r - 将字符串连接到数据框列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34514268/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com