当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


R语言 as.vector()用法及代码示例


as.vector()R语言中的函数用于将对象转换为向量。

用法: as.vector(x)

参数:
x:要转换的对象

范例1:


# R program to convert an object to vector
  
# Creating an array
x <- array(c(2, 3, 4, 7, 2, 5), c(3, 2))
x
  
# Calling as.vector() Function
as.vector(x)

输出:

     [, 1] [, 2]
[1, ]    2    7
[2, ]    3    2
[3, ]    4    5
[1] 2 3 4 7 2 5

范例2:


# R program to convert an object to vector
  
# Creating a matrix
x <- matrix(c(1:9), 3, 3)
x
  
# Calling as.vector() Function
as.vector(x)

输出:

     [, 1] [, 2] [, 3]
[1, ]    1    4    7
[2, ]    2    5    8
[3, ]    3    6    9
[1] 1 2 3 4 5 6 7 8 9

相关用法


注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Convert an Object into a Vector in R Programming – as.vector() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。