Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在许多函数中,我看到诸如 data[, -i] 之类的东西,如果它是 data[, i],则表示指的是特定列和所有行。这是否意味着我们正在省略该列?在我的情况下,data 是一个包含 csv 文件的表。
使用 - in [] 就是这样做的!查看下面的示例并自己尝试其他示例。
> a<-1:10 > a[-1] [1] 2 3 4 5 6 7 8 9 10 > a[-(1:3)] [1] 4 5 6 7 8 9 10
与矩阵类似:
> a<-matrix(1:4,2,2) > a [,1] [,2] [1,] 1 3 [2,] 2 4 > a[,-1] [1] 3 4
祝你有美好的一天!