rowSums()
La función en R Language se usa para calcular la suma de filas de una array o una array.
Sintaxis: rowSums(x, na.rm = FALSE, dims = 1)
Parámetros:
x: array o array
dims: Integer: Las dimensiones se consideran como ‘filas’ para sumar. Es sobre dimensiones dims+1, ….
Ejemplo 1:
# R program to illustrate # rowSums() function # Initializing a matrix x <- matrix(rep(2:10), 3, 3) # Printing Matrix print(x) # Calling the rowSums() function rowSums(x)
Producción:
[, 1] [, 2] [, 3] [1, ] 2 5 8 [2, ] 3 6 9 [3, ] 4 7 10 [1] 15 18 21
Ejemplo 2:
# R program to illustrate # rowSums function # Initializing a 3D array x <- array(1:8, c(2, 2, 2)) # Printing the array print(x) # Calling the rowSums() function rowSums(x, dims = 1)
Producción:
,, 1 [, 1] [, 2] [1, ] 1 3 [2, ] 2 4,, 2 [, 1] [, 2] [1, ] 5 7 [2, ] 6 8 [1] 16 20
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