typeof()
La función en lenguaje R se utiliza para devolver los tipos de datos utilizados como argumentos.
Sintaxis: tipo de(x)
Parámetros:
x: datos especificados
Ejemplo 1:
# R program to illustrate # typeof function # Specifying "Biochemical oxygen demand" # data set x <- BOD x # Calling typeof() function typeof(x)
Producción:
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] "list"
Ejemplo 2:
# R program to illustrate # typeof function # Calling typeof() function # over different types of data typeof(2) typeof(2.8) typeof("3") typeof("gfg") typeof(1 + 2i)
Producción:
[1] "double" [1] "double" [1] "character" [1] "character" [1] "complex"
Publicación traducida automáticamente
Artículo escrito por Kanchan_Ray y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA