Obtenga el número de niveles de un factor en la programación R: función nlevels()

nlevels()La función en lenguaje R se usa para obtener el número de niveles de un factor.

Sintaxis: nniveles(x)

Parámetros:
x: Objeto Factor

Ejemplo 1:

# R program to get the number
# of levels of a factor
  
# Creating a factor
x <- gl(3, 2)
x
  
# Calling nlevels() function
# to get the number of levels
nlevels(x)

Producción:

[1] 1 1 2 2 3 3
Levels: 1 2 3
[1] 3

Ejemplo 2:

# R program to get the number
# of levels of a factor
  
# Creating a factor
gender <- factor(c("female", "male", "male", "female")); 
gender
  
# Calling nlevels() function
# to get the number of levels
nlevels(gender)

Producción:

[1] female male   male   female
Levels: female male
[1] 2

Publicación traducida automáticamente

Artículo escrito por nidhi_biet y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *