如何在 R 中创建一个空向量?
在本文中,我们将看到如何在 R 编程语言中创建一个空向量。创建空向量有五种方法,下面将详细讨论每种方法:
- 使用 c()
- 使用向量()
- 使用 NULL 创建空向量
- 使用 numeric() 方法
- 使用 rep() 方法
方法 1:使用 c()
在这里,我们在创建空向量时不需要传递任何东西,因为我们正在创建空向量。
句法:
vector name <- c()
其中,向量名称可以是任何有效标识符。
例子 :
R
# Here we are creating empty
# vector using c().
vect <- c()
vect
R
# Here we are creating empty vector
# using vector().
vect <- vector()
vect
R
# Here we are creating empty
# vector using NULL
a<- NULL
a
R
# creating empty vector vec using
# numeric function.
vec <- numeric()
vec
R
# creating empty vector vec using
# numeric function.
vec <- rep()
vec
输出:
NULL
输出为空,因为我们没有向它传递任何数据。
方法 2:使用 vector()
在这里,我们不需要传递任何东西,因为我们正在创建一个空向量:
句法:
vector name <- vector()
其中,向量名称可以是任何有效标识符。
例子
电阻
# Here we are creating empty vector
# using vector().
vect <- vector()
vect
输出:
logical(0)
输出为空,因为我们没有传递任何数据。
方法 3:使用 NULL 创建空向量
在这里,我们通过传递 null 来创建空向量。
句法:
vector name <- NULL
其中,向量名称可以是任何有效标识符。
例子
电阻
# Here we are creating empty
# vector using NULL
a<- NULL
a
输出:
NULL
方法四:使用 numeric() 方法
这里我们使用 numeric() 创建空向量。
句法:
vector name <- numeric()
其中,向量名称可以是任何有效标识符。
例子
电阻
# creating empty vector vec using
# numeric function.
vec <- numeric()
vec
输出:
numeric(0)
方法五:使用 rep() 方法
这里我们可以直接使用rep()来创建空向量。
句法:
vector name<- rep()
其中,向量名称可以是任何有效标识符。
例子:
电阻
# creating empty vector vec using
# numeric function.
vec <- rep()
vec
输出:
NULL