R 数组操作

发布于 2024-08-19 03:32:43 字数 200 浏览 6 评论 0原文

在 python 中,列表可以像这样 x[4:-1] 那样进行切片,以从第四个元素到最后一个元素。

在 R 中,对于带有 x[4:length(x)] 的向量和带有诸如 x[,,,,4:dim(x)[5 之类的多维数组,可以完成类似的事情],,,]。对于从中间的元素到最后一个元素的特定维度的数组切片,这是更优雅的语法吗?

谢谢

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 x[4:length(x)] and for multidimensional arrays with something like x[,,,,4:dim(x)[5],,,]. Is this more elegant syntax for array slicing for a particular dimension from an element in the middle to the last element?

Thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

彩虹直至黑白 2024-08-26 03:32:43

您可以使用删除元素语法:

> (1:10)[-(1:4)]
[1]  5  6  7  8  9 10

You could use the drop elements syntax:

> (1:10)[-(1:4)]
[1]  5  6  7  8  9 10
離人涙 2024-08-26 03:32:43

如果您有兴趣切片数组的最后 n 个元素,那么您可以使用:

x[seq(length=n, from=length(x), by=-1)] 

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)] 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文