Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

R 数组


数组

与矩阵相比,数组可以具有超过两个维度。

我们可以使用 array() 函数来创建一个数组,并且使用 dim 参数来指定维度。

示例

# 一个一维数组,其值范围为 1 到 24
thisarray <- c(1:24)
thisarray

# 一个多维数组
multiarray <- array(thisarray, dim = c(4, 3, 2))
multiarray
自己尝试 »

示例解释

在上面的示例中,我们创建了一个包含 1 到 24 的值的数组。

dim=c(4,3,2) 是如何工作的?
括号中的第一个和第二个数字指定行数和列数。
括号中的最后一个数字指定我们想要的维度数量。

**注意:** 数组只能具有一个数据类型。


访问数组项

您可以通过引用索引位置来访问数组元素。您可以使用 [] 括号来访问数组中的所需元素。

示例

thisarray <- c(1:24)
multiarray <- array(thisarray, dim = c(4, 3, 2))

multiarray[2, 3, 2]
自己尝试 »

语法如下: array[行位置, 列位置, 矩阵级别]

您还可以使用 c() 函数访问数组中矩阵的整行或整列。

示例

thisarray <- c(1:24)

# 访问矩阵一的第一行的所有项
multiarray <- array(thisarray, dim = c(4, 3, 2))
multiarray[c(1),,1]

# 访问矩阵一的第一列的所有项
multiarray <- array(thisarray, dim = c(4, 3, 2))
multiarray[,c(1),1]
自己尝试 »

c() 前面的逗号 (,) 表示我们想要访问列。

c() 后面的逗号 (,) 表示我们想要访问行。



检查项是否存在

要找出数组中是否存在指定项,请使用 %in% 运算符。

示例

检查数组中是否存在值“2”。

thisarray <- c(1:24)
multiarray <- array(thisarray, dim = c(4, 3, 2))

2 %in% multiarray
自己尝试 »

行数和列数

使用 dim() 函数来查找数组中的行数和列数。

示例

thisarray <- c(1:24)
multiarray <- array(thisarray, dim = c(4, 3, 2))

dim(multiarray)
自己尝试 »

数组长度

使用 length() 函数来查找数组的维度。

示例

thisarray <- c(1:24)
multiarray <- array(thisarray, dim = c(4, 3, 2))

length(multiarray)
自己尝试 »

遍历数组

您可以使用 for 循环遍历数组项。

示例

thisarray <- c(1:24)
multiarray <- array(thisarray, dim = c(4, 3, 2))

for(x in multiarray){
  print(x)
}
自己尝试 »
×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.