R array manipulation

后端 未结 2 1447
梦毁少年i
梦毁少年i 2021-02-19 16:40

In python lists can be sliced like this x[4:-1] to get from the fourth to the last element.

In R something similar can be accomplished for vectors with

相关标签:
2条回答
  • 2021-02-19 17:16

    You could use the drop elements syntax:

    > (1:10)[-(1:4)]
    [1]  5  6  7  8  9 10
    
    0 讨论(0)
  • 2021-02-19 17:33

    In case you are interested in slicing the last n elements of the array then you could use:

    x[seq(length=n, from=length(x), by=-1)] 
    
    0 讨论(0)
提交回复
热议问题