我在R中创建了以下代码。
data=c("Sepal.Length","Sepal.Width","Petal.Length","Petal.Width")
terms<- paste(data, collapse='+')
这给了我们;
"Sepal.Length+Sepal.Width+Petal.Length+Petal.Width"
在Python/Pandas中有没有类似的方法?
最佳答案
使用联接:
d = ["Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width"]
x = '+'.join(d)
print(x)
输出:
Sepal.Length+Sepal.Width+Petal.Length+Petal.Width
关于python - Python/Pandas中的R矢量语法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/52275496/