unname()
R 语言中的函数用于从对象中删除名称或名称。
用法: unname(x)
参数:
x:Object
范例1:
# R Program to remove names from an object
# Creating a matrix
A = matrix(c(1:9), 3, 3)
# Naming rows
rownames(A) = c("a", "b", "c")
# Naming columns
colnames(A) = c("c", "d", "e")
print(A)
# Removing names using unname() function
unname(A)
输出:
c d e a 1 4 7 b 2 5 8 c 3 6 9 [, 1] [, 2] [, 3] [1, ] 1 4 7 [2, ] 2 5 8 [3, ] 3 6 9
范例2:
# R Program to remove names from an object
# Calling pre-defined data set
BOD
# Removing names using unname() function
unname(BOD)
输出:
Time demand 1 1 8.3 2 2 10.3 3 3 19.0 4 4 16.0 5 5 15.6 6 7 19.8 1 1 8.3 2 2 10.3 3 3 19.0 4 4 16.0 5 5 15.6 6 7 19.8
相关用法
- R语言 names()用法及代码示例
- R语言 unique()用法及代码示例
- R语言 na.omit()用法及代码示例
- R语言 sapply()用法及代码示例
- R语言 identity()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 which()用法及代码示例
- R语言 call()用法及代码示例
- R语言 cumprod()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Remove names or dimnames from an Object in R Programming – unname() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。