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


R語言 gl()用法及代碼示例


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



相關用法


注:本文由純淨天空篩選整理自nidhi_biet大神的英文原創作品 Generate Factors with specified Levels in R Programming – gl() Function。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。