> df3 <- pivot_longer(QLS_soil,cols = -("Degree of desertification","Classes"), Error: unexpected ',' in "df3 <- pivot_longer(QLS_soil,cols = -("Degree of desertification"," >
时间: 2023-07-19 13:41:05 浏览: 127
Python库 | nely-df3d-0.59.tar.gz
错误提示显示代码中存在语法错误,原因在于第二个参数中的字符需要使用向量的形式,而且不需要使用括号。请尝试将该行代码修改为以下形式:
```
df3 <- pivot_longer(QLS_soil, cols = c(-"Degree of desertification", -"Classes"), names_to = "Depth", values_to = "pH")
```
在这里,我使用了向量 `c()` 将需要排除的列名 `"Degree of desertification"` 和 `"Classes"` 进行了组合,并使用负号 `-` 表示将这些列排除。同时,我去掉了参数中的括号,保证语法正确。
阅读全文