标签: r vector printing element
这是一个编程问题。我不明白如何打印出矢量的1个元素。我的代码如下:
{{1}}
???
答案 0 :(得分:2)
如果我明白你在问什么,这应该有效。这是一个简单的例子。
a <- c(1,2,3,3) thresh <- c(1,2,3,4) # run at command line > thresh[a==max(a)] [1] 3 4