R語言
asplit
位於 base
包(package)。 說明
按邊距分割數組或矩陣。
用法
asplit(x, MARGIN)
參數
x |
一個數組,包括一個矩陣。 |
MARGIN |
給出分割邊距的向量。例如,對於矩陣 |
細節
自從R4.1.0,還可以使用以下方式獲得分割(效率較低)apply(x, MARGIN, identity, simplify = FALSE)
。分割的值也可以通過以下方式獲得(效率較低)split(x, slice.index(x, MARGIN))
.
值
具有維度 x
包含和不包含在 MARGIN
中的維度。 的 “list array”,每個元素是維度為 的數組,並且保留為可用的暗名稱,其中 和 分別是
例子
## A 3-dimensional array of dimension 2 x 3 x 4:
d <- 2 : 4
x <- array(seq_len(prod(d)), d)
x
## Splitting by margin 2 gives a 1-d list array of length 3
## consisting of 2 x 4 arrays:
asplit(x, 2)
## Splitting by margins 1 and 2 gives a 2 x 3 list array
## consisting of 1-d arrays of length 4:
asplit(x, c(1, 2))
## Compare to
split(x, slice.index(x, c(1, 2)))
## A 2 x 3 matrix:
(x <- matrix(1 : 6, 2, 3))
## To split x by its rows, one can use
asplit(x, 1)
## or less efficiently
split(x, slice.index(x, 1))
split(x, row(x))
相關用法
- R as.Date 日期與字符之間的轉換函數
- R assignOps 賦值運算符
- R as.POSIX* 日期時間轉換函數
- R as.environment 強製環境對象
- R as.function 將對象轉換為函數
- R assign 為名稱分配值
- R as.data.frame 強製數據幀
- R apply 在數組邊距上應用函數
- R agrep 近似字符串匹配(模糊匹配)
- R append 向量合並
- R attributes 對象屬性列表
- R abbreviate 縮寫字符串
- R all.equal 測試兩個對象是否(幾乎)相等
- R aperm 數組轉置
- R args 函數的參數列表
- R attr 對象屬性
- R array2DF 將數組轉換為 DataFrame
- R autoload 按需加載包
- R attach 將一組 R 對象附加到搜索路徑
- R all.names 查找表達式中的所有名稱
- R any 有些值是真的嗎?
- R array 多路陣列
- R all 所有的值都是真的嗎?
- R file.path 構造文件路徑
- R grep 模式匹配和替換
注:本文由純淨天空篩選整理自R-devel大神的英文原創作品 Split Array/Matrix By Its Margins。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。