當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。