gl()
R语言中的函数用于通过指定其级别的模式来生成因子。
用法:
gl(x, k, length, labels, ordered)
参数:
x:级别数
k:重复次数
length:结果长度
labels:向量的标签(可选)
ordered:用于对级别进行排序的布尔值
范例1:
# R Program to generate factors
# Creating a factor
# using gl() function
x1 <- gl(2, 5)
# gl() function with
# length specified
x2 <- gl(3, 4, 12)
# Printing the factors
print(x1)
print(x2)
输出:
[1] 1 1 1 1 1 2 2 2 2 2 Levels:1 2 [1] 1 1 1 1 2 2 2 2 3 3 3 3 Levels:1 2 3
范例2:
# R Program to generate factors
# gl() function with
# length and labels specified
x1 <- gl(3, 4, 12, label = letters[1:12])
# gl() function with
# length, label and order specified
x2 <- gl(3, 4, 12, label = letters[1:12], ordered = T)
# Printing the factors
print(x1)
print(x2)
输出:
[1] a a a a b b b b c c c c Levels:a b c d e f g h i j k l [1] a a a a b b b b c c c c Levels:a < b < c < d < e < f < g < h < i < j < k < l
相关用法
- R语言 levels()用法及代码示例
- R语言 seq_len()用法及代码示例
- R语言 topo.colors()用法及代码示例
- R语言 cm.colors()用法及代码示例
- R语言 terrain.colors()用法及代码示例
- R语言 droplevels()用法及代码示例
- R语言 nlevels()用法及代码示例
- R语言 arrayInd()用法及代码示例
- R语言 word()用法及代码示例
- R语言 get()用法及代码示例
- R语言 curve()用法及代码示例
- R语言 signif()用法及代码示例
- R语言 strtrim()用法及代码示例
- R语言 exists()用法及代码示例
- R语言 polygon()用法及代码示例
- R语言 rep_len()用法及代码示例
- R语言 rep.int()用法及代码示例
- R语言 seq.int()用法及代码示例
- R语言 rgb()用法及代码示例
- R语言 colorRampPalette()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Generate Factors with specified Levels in R Programming – gl() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。