names()
R語言中的函數用於獲取或設置對象的名稱。此函數將對象(即向量、矩陣或 DataFrame )作為參數以及要作為名稱分配給對象的值。傳遞的值向量的長度必須與要命名的對象的長度完全相等。
用法: names(x) <- value
參數:
x:對象,即向量、矩陣、 DataFrame 等。
value:要分配給 x 的名稱
範例1:
# R program to assign name to an object
# Creating a vector
x <- c(1, 2, 3, 4, 5)
# Assigning names using names() function
names(x) <- c("gfg1", "gfg2", "gfg3", "gfg4", "gfg5")
# Printing name vector that is assigned
names(x)
# Printing updated vector
print(x)
輸出:
[1] "gfg1" "gfg2" "gfg3" "gfg4" "gfg5" gfg1 gfg2 gfg3 gfg4 gfg5 1 2 3 4 5
範例2:
# R program to get names of an Object
# Importing Library
library(datasets)
# Importing dataset
head(airquality)
# Calling names() function to get names
names(airquality)
輸出:
Ozone Solar.R Wind Temp Month Day 1 41 190 7.4 67 5 1 2 36 118 8.0 72 5 2 3 12 149 12.6 74 5 3 4 18 313 11.5 62 5 4 5 NA NA 14.3 56 5 5 6 28 NA 14.9 66 5 6 [1] "Ozone" "Solar.R" "Wind" "Temp" "Month" "Day"
相關用法
- R語言 unname()用法及代碼示例
- R語言 mode()用法及代碼示例
- R語言 ncol()用法及代碼示例
- R語言 nrow()用法及代碼示例
- R語言 max()用法及代碼示例
- R語言 min()用法及代碼示例
- R語言 get()用法及代碼示例
- R語言 unique()用法及代碼示例
- R語言 order()用法及代碼示例
- R語言 sapply()用法及代碼示例
- R語言 setdiff()用法及代碼示例
- R語言 sign()用法及代碼示例
- R語言 levels()用法及代碼示例
- R語言 dim()用法及代碼示例
- R語言 structure()用法及代碼示例
- R語言 head()用法及代碼示例
- R語言 tail()用法及代碼示例
- R語言 args()用法及代碼示例
- R語言 identity()用法及代碼示例
- R語言 type.convert()用法及代碼示例
- R語言 which()用法及代碼示例
- R語言 call()用法及代碼示例
- R語言 cumprod()用法及代碼示例
注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Get or Set names of Elements of an Object in R Programming – names() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。