gpt4 book ai didi

python - Python/Pandas 中的 R 向量语法

转载 作者:行者123 更新时间:2023-11-28 17:04:11 24 4
gpt4 key购买 nike

我在 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/

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