I have a big table in R, now I want to select the

2019-04-13 15:54发布

A=matrix(0,4,2)

A[1,1]=2
A[1,2]=3
A[2,1]=2
A[2,2]=3
A[3,1]=2
A[3,2]=3
A[4,1]=2
A[4,2]=3

Now I want to pick up row 2,4 and return this is odd before the first element of the row.

But I don't know how to make a loop to pick up row 2,4

1条回答
太酷不给撩
2楼-- · 2019-04-13 16:41

If I understand your question correctly, you want to display some text and the first element of all odd rows. You can try this:

cat(paste("This is odd", A[c(2,4),1], "\n"))

No need for a loop there. Should you want to work with a larger matrix, and take all odd rows, you can use seq(2, nrow(A), by=2) instead of c(2,4).

查看更多
登录 后发表回答