1.创建一个10和20的数列赋值给变量M。2.Identify大于13小于20的位置
1. Create a sequence of number from 10 and 20 and assign it to variable M. 2.Identify the position of values greater than 13 and less than 20
我试过下面的代码,但它显示的答案不准确
M = seq(10,20)
print(which(M > 13 & M<20))
您的代码正确显示了元素的位置。看到了吗?
> print(which(M > 13 & M<20))
[1] 5 6 7 8 9 10 <-- position of elements
> M[which(M > 13 & M<20)]
[1] 14 15 16 17 18 19 <-- actual values
我试过下面的代码,但它显示的答案不准确
M = seq(10,20)
print(which(M > 13 & M<20))
您的代码正确显示了元素的位置。看到了吗?
> print(which(M > 13 & M<20))
[1] 5 6 7 8 9 10 <-- position of elements
> M[which(M > 13 & M<20)]
[1] 14 15 16 17 18 19 <-- actual values