función externa() en R

La función externa() en el lenguaje de programación R se usa para aplicar una función a dos arrays.

Sintaxis: exterior(x, y, DIVERSIÓN=”*”, …)

Parámetros: 

  • x, y: arrays
  • DIVERSIÓN: función para usar en los productos externos, el valor predeterminado es multiplicar

función externa() en el ejemplo de programación R

Ejemplo 1: Producto exterior de dos vectores

R

# R program to illustrate
# outer function
  
# Initializing two arrays of elements
x <- c(1, 2, 3, 4, 5)
y<- c(2, 4, 6)
  
# Multiplying array x elements with array y elements
# Here multiply (*) parameter is not used still this 
# function take it as default
outer(x, y)

Producción: 

     [, 1] [, 2] [, 3]
[1, ]    2    4    6
[2, ]    4    8   12
[3, ]    6   12   18
[4, ]    8   16   24
[5, ]   10   20   30

Ejemplo 2: función externa para vector y valor único

R

# R program to illustrate
# outer function
  
# Initializing two arrays of elements
x <- 1:8
y<- 4
  
# Multiplying array x elements with array y elements
# Here multiply (*) parameter is not used still this 
# function take it as default
outer(x, y, "+")

Producción: 

      [,1]
[1,]    5
[2,]    6
[3,]    7
[4,]    8
[5,]    9
[6,]   10
[7,]   11
[8,]   12

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

Deja una respuesta

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