Objetivo

Construir permutaciones de conjuntos de datos de personas y de nombres de equipos deportivos

Descripción

A partir de conjuntos datos (valores individuales) realizar permutaciones para conocer el número de las mismas y el acomodo de los valores para su interpretación en términos de probabilidad.

La diferencias entre permutaciones y combinaciones tiene que ver con la cantidad o el número de eventos.

Al hacer permutaciones, si importa el orden en que se acomodan los elementos, es decir en que columna aparecen, en la primera, segunda, tercera y y sucesivamente.

Para identificar el orden, se puede decir que no es lo mismo “Oscar”, “Paco” que “Paco”, “Oscar”, están a la inversa o el orden está invertido. Eso es una diferencia con las combinaciones, son los mismos elementos pero el orden en que se acomodan o en que aparecen los elementos está diferente.

Se deben hacer las siguientes acciones:

Cargar librerías

Se van a utilizar funciones de la librería “gtools” por lo que se necesario instalarla previamente: install.packages(“gtools”).

Esta librería permitirá hacer combinaciones y permutaciones.

# install.packages("gtools")
library(gtools)

Marco conceptual

Para hacer permutaciones es necesario identificar la importancia del valor factorial de un número

Factorial

El factorial de un número es el producto de \(n\) por todos los naturales menores que el y se representa con el \(!n\), entonces \(n!=n\times(n-1)...\times 1\)

La función factorial es una fórmula matemática representada por el signo de exclamación \(!\). En la fórmula Factorial se deben multiplicar todos los números enteros y positivos que hay entre el número que aparece en la fórmula y el número \(1\).

Ejemplo: hallar el factorial de 6 o se sea \(6!=6\times5\times4\times3\times2\times1=720\)

Permutaciones

La regla de conteo de permutaciones permite calcular el número de resultados experimentales cuando se seleccionan cierto número objetos de un conjunto de \(n\) objetos y el orden de selección es relevante.

Los mismos \(r\) objetos seleccionados en orden diferente se consideran un resultado experimental diferente.

Fórmula de permutaciones

\[ S=Pn\binom{n}{r} = \frac{n!}{(n-r)!}\\S \text{ es el espacio muestral y la cantidad de permutaciones} \\Pn \text{ es el número de permutaciones posibles}\\ \binom{n}{r} \text {es símbolo de permutar n elementos en grupos de r}\\ n \text{ es el total de elementos}\\ r \text{ es de cuantos en cuantos elementos se hacen grupos y permutaciones} \]

Ejemplo 1. Nombres de personas

Se trata de hacer permutaciones con los nombres de cuatro personas: “Oscar”, “Paco”, “Paty”, “Laura”, “Rubén”, “Luis”, “Lucy”, “Alberto”, “Juan” en grupos de 2.

Entonces \(n=9\), porque hay cuatro nombres o elementos y \(r=2\) porque se trata de agrupar o permutar de dos en dos.

¿Cuántas permutaciones deberá haber?

  • Oscar y Paco

  • Paco y Oscar

  • Oscar y Paty

  • Paty y Oscar

  • Oscar y Laura

  • Laura y Oscar

  • Paco y Paty

  • Paty y Paco

  • … …

  • … …

  • Paty y Laura

  • Laura y Paty

nombres <- c("Oscar", "Paco", "Paty", "Laura", "Rubén", "Luis", "Lucy", "Alberto", "Juan", "Diego", "Pedro", "Ana", "Hugo", "Maria")
n <- length(nombres)
r <- 2 # ¿cómo agrupar o permutar?
Pn <- factorial(n) / factorial(n-r)
paste("Existen ", Pn , " posibles permutaciones del total de ", n , " nombres ", " en grupos de ", r ," en ", r)
## [1] "Existen  182  posibles permutaciones del total de  14  nombres   en grupos de  2  en  2"

Ejemplo 2. Nombres de equipos de fútbol en México.

Se trata de hacer combinaciones con los nombres de seis equipos de fútbol: “Atlas”, “Guadalajara”, “Monterrey”, “América”, “Cruz Azul”, “Santos” en grupos de 5. Entonces \(n=9\), porque hay seis equipos o elementos y \(r=5\) porque se trata de agrupar de tres en tres.

¿Cuántas permutaciones deberá haber?

empresas <- c("Google", "Lego", "Sabritas", "Oxxo", "Adidas", "Chevrolet", "Samsung", "DHL", "Yamaha")
n <- length(empresas)
r <- 5 # ¿cómo agrupar?
Pn <- factorial(n) / factorial(n-r)
paste("Existen ", Pn , " posibles permutaciones del total de ", n , " equipos ", " en grupos de ", r ," en ", r)
## [1] "Existen  15120  posibles permutaciones del total de  9  equipos   en grupos de  5  en  5"

Desarrollo

Si bien la fórmula de permutaciones indica el número de permutaciones posibles de un conjunto de elementos pero lo que se desea conocer es ¿cómo se forman o cómo se verían los grupos?.

Se utiliza la función permutation

Permutaciones

Se utiliza la función permutation() y se requiere por lo menos tres atributos:

  • La cantidad de elementos n

  • Los grupos de cuanto en cuanto se forman r

  • y los elementos, o sea en este caso el vector v

Nombres de personas

Se muestran las posibles permutaciones de los nombres de personas. Las función permutations() ordena los valores alfabéticamente y luego construye las combinaciones.

nombres
##  [1] "Oscar"   "Paco"    "Paty"    "Laura"   "Rubén"   "Luis"    "Lucy"   
##  [8] "Alberto" "Juan"    "Diego"   "Pedro"   "Ana"     "Hugo"    "Maria"
Pern.nombres <- permutations(n = length(nombres), r = 2, v = nombres)
Pern.nombres
##        [,1]      [,2]     
##   [1,] "Alberto" "Ana"    
##   [2,] "Alberto" "Diego"  
##   [3,] "Alberto" "Hugo"   
##   [4,] "Alberto" "Juan"   
##   [5,] "Alberto" "Laura"  
##   [6,] "Alberto" "Lucy"   
##   [7,] "Alberto" "Luis"   
##   [8,] "Alberto" "Maria"  
##   [9,] "Alberto" "Oscar"  
##  [10,] "Alberto" "Paco"   
##  [11,] "Alberto" "Paty"   
##  [12,] "Alberto" "Pedro"  
##  [13,] "Alberto" "Rubén"  
##  [14,] "Ana"     "Alberto"
##  [15,] "Ana"     "Diego"  
##  [16,] "Ana"     "Hugo"   
##  [17,] "Ana"     "Juan"   
##  [18,] "Ana"     "Laura"  
##  [19,] "Ana"     "Lucy"   
##  [20,] "Ana"     "Luis"   
##  [21,] "Ana"     "Maria"  
##  [22,] "Ana"     "Oscar"  
##  [23,] "Ana"     "Paco"   
##  [24,] "Ana"     "Paty"   
##  [25,] "Ana"     "Pedro"  
##  [26,] "Ana"     "Rubén"  
##  [27,] "Diego"   "Alberto"
##  [28,] "Diego"   "Ana"    
##  [29,] "Diego"   "Hugo"   
##  [30,] "Diego"   "Juan"   
##  [31,] "Diego"   "Laura"  
##  [32,] "Diego"   "Lucy"   
##  [33,] "Diego"   "Luis"   
##  [34,] "Diego"   "Maria"  
##  [35,] "Diego"   "Oscar"  
##  [36,] "Diego"   "Paco"   
##  [37,] "Diego"   "Paty"   
##  [38,] "Diego"   "Pedro"  
##  [39,] "Diego"   "Rubén"  
##  [40,] "Hugo"    "Alberto"
##  [41,] "Hugo"    "Ana"    
##  [42,] "Hugo"    "Diego"  
##  [43,] "Hugo"    "Juan"   
##  [44,] "Hugo"    "Laura"  
##  [45,] "Hugo"    "Lucy"   
##  [46,] "Hugo"    "Luis"   
##  [47,] "Hugo"    "Maria"  
##  [48,] "Hugo"    "Oscar"  
##  [49,] "Hugo"    "Paco"   
##  [50,] "Hugo"    "Paty"   
##  [51,] "Hugo"    "Pedro"  
##  [52,] "Hugo"    "Rubén"  
##  [53,] "Juan"    "Alberto"
##  [54,] "Juan"    "Ana"    
##  [55,] "Juan"    "Diego"  
##  [56,] "Juan"    "Hugo"   
##  [57,] "Juan"    "Laura"  
##  [58,] "Juan"    "Lucy"   
##  [59,] "Juan"    "Luis"   
##  [60,] "Juan"    "Maria"  
##  [61,] "Juan"    "Oscar"  
##  [62,] "Juan"    "Paco"   
##  [63,] "Juan"    "Paty"   
##  [64,] "Juan"    "Pedro"  
##  [65,] "Juan"    "Rubén"  
##  [66,] "Laura"   "Alberto"
##  [67,] "Laura"   "Ana"    
##  [68,] "Laura"   "Diego"  
##  [69,] "Laura"   "Hugo"   
##  [70,] "Laura"   "Juan"   
##  [71,] "Laura"   "Lucy"   
##  [72,] "Laura"   "Luis"   
##  [73,] "Laura"   "Maria"  
##  [74,] "Laura"   "Oscar"  
##  [75,] "Laura"   "Paco"   
##  [76,] "Laura"   "Paty"   
##  [77,] "Laura"   "Pedro"  
##  [78,] "Laura"   "Rubén"  
##  [79,] "Lucy"    "Alberto"
##  [80,] "Lucy"    "Ana"    
##  [81,] "Lucy"    "Diego"  
##  [82,] "Lucy"    "Hugo"   
##  [83,] "Lucy"    "Juan"   
##  [84,] "Lucy"    "Laura"  
##  [85,] "Lucy"    "Luis"   
##  [86,] "Lucy"    "Maria"  
##  [87,] "Lucy"    "Oscar"  
##  [88,] "Lucy"    "Paco"   
##  [89,] "Lucy"    "Paty"   
##  [90,] "Lucy"    "Pedro"  
##  [91,] "Lucy"    "Rubén"  
##  [92,] "Luis"    "Alberto"
##  [93,] "Luis"    "Ana"    
##  [94,] "Luis"    "Diego"  
##  [95,] "Luis"    "Hugo"   
##  [96,] "Luis"    "Juan"   
##  [97,] "Luis"    "Laura"  
##  [98,] "Luis"    "Lucy"   
##  [99,] "Luis"    "Maria"  
## [100,] "Luis"    "Oscar"  
## [101,] "Luis"    "Paco"   
## [102,] "Luis"    "Paty"   
## [103,] "Luis"    "Pedro"  
## [104,] "Luis"    "Rubén"  
## [105,] "Maria"   "Alberto"
## [106,] "Maria"   "Ana"    
## [107,] "Maria"   "Diego"  
## [108,] "Maria"   "Hugo"   
## [109,] "Maria"   "Juan"   
## [110,] "Maria"   "Laura"  
## [111,] "Maria"   "Lucy"   
## [112,] "Maria"   "Luis"   
## [113,] "Maria"   "Oscar"  
## [114,] "Maria"   "Paco"   
## [115,] "Maria"   "Paty"   
## [116,] "Maria"   "Pedro"  
## [117,] "Maria"   "Rubén"  
## [118,] "Oscar"   "Alberto"
## [119,] "Oscar"   "Ana"    
## [120,] "Oscar"   "Diego"  
## [121,] "Oscar"   "Hugo"   
## [122,] "Oscar"   "Juan"   
## [123,] "Oscar"   "Laura"  
## [124,] "Oscar"   "Lucy"   
## [125,] "Oscar"   "Luis"   
## [126,] "Oscar"   "Maria"  
## [127,] "Oscar"   "Paco"   
## [128,] "Oscar"   "Paty"   
## [129,] "Oscar"   "Pedro"  
## [130,] "Oscar"   "Rubén"  
## [131,] "Paco"    "Alberto"
## [132,] "Paco"    "Ana"    
## [133,] "Paco"    "Diego"  
## [134,] "Paco"    "Hugo"   
## [135,] "Paco"    "Juan"   
## [136,] "Paco"    "Laura"  
## [137,] "Paco"    "Lucy"   
## [138,] "Paco"    "Luis"   
## [139,] "Paco"    "Maria"  
## [140,] "Paco"    "Oscar"  
## [141,] "Paco"    "Paty"   
## [142,] "Paco"    "Pedro"  
## [143,] "Paco"    "Rubén"  
## [144,] "Paty"    "Alberto"
## [145,] "Paty"    "Ana"    
## [146,] "Paty"    "Diego"  
## [147,] "Paty"    "Hugo"   
## [148,] "Paty"    "Juan"   
## [149,] "Paty"    "Laura"  
## [150,] "Paty"    "Lucy"   
## [151,] "Paty"    "Luis"   
## [152,] "Paty"    "Maria"  
## [153,] "Paty"    "Oscar"  
## [154,] "Paty"    "Paco"   
## [155,] "Paty"    "Pedro"  
## [156,] "Paty"    "Rubén"  
## [157,] "Pedro"   "Alberto"
## [158,] "Pedro"   "Ana"    
## [159,] "Pedro"   "Diego"  
## [160,] "Pedro"   "Hugo"   
## [161,] "Pedro"   "Juan"   
## [162,] "Pedro"   "Laura"  
## [163,] "Pedro"   "Lucy"   
## [164,] "Pedro"   "Luis"   
## [165,] "Pedro"   "Maria"  
## [166,] "Pedro"   "Oscar"  
## [167,] "Pedro"   "Paco"   
## [168,] "Pedro"   "Paty"   
## [169,] "Pedro"   "Rubén"  
## [170,] "Rubén"   "Alberto"
## [171,] "Rubén"   "Ana"    
## [172,] "Rubén"   "Diego"  
## [173,] "Rubén"   "Hugo"   
## [174,] "Rubén"   "Juan"   
## [175,] "Rubén"   "Laura"  
## [176,] "Rubén"   "Lucy"   
## [177,] "Rubén"   "Luis"   
## [178,] "Rubén"   "Maria"  
## [179,] "Rubén"   "Oscar"  
## [180,] "Rubén"   "Paco"   
## [181,] "Rubén"   "Paty"   
## [182,] "Rubén"   "Pedro"

Nombres de empresas

Se muestran las posibles combinaciones de los nombres de empresas.

empresas
## [1] "Google"    "Lego"      "Sabritas"  "Oxxo"      "Adidas"    "Chevrolet"
## [7] "Samsung"   "DHL"       "Yamaha"
Pn.empresas <- permutations(n = length(empresas), r = 5, v = empresas)

Se muestran solo los primeras diez y últimas diez permutaciones de empresas

head(Pn.empresas)
##      [,1]     [,2]        [,3]  [,4]     [,5]      
## [1,] "Adidas" "Chevrolet" "DHL" "Google" "Lego"    
## [2,] "Adidas" "Chevrolet" "DHL" "Google" "Oxxo"    
## [3,] "Adidas" "Chevrolet" "DHL" "Google" "Sabritas"
## [4,] "Adidas" "Chevrolet" "DHL" "Google" "Samsung" 
## [5,] "Adidas" "Chevrolet" "DHL" "Google" "Yamaha"  
## [6,] "Adidas" "Chevrolet" "DHL" "Lego"   "Google"
tail(Pn.empresas)
##          [,1]     [,2]      [,3]       [,4]   [,5]       
## [15115,] "Yamaha" "Samsung" "Sabritas" "Lego" "Oxxo"     
## [15116,] "Yamaha" "Samsung" "Sabritas" "Oxxo" "Adidas"   
## [15117,] "Yamaha" "Samsung" "Sabritas" "Oxxo" "Chevrolet"
## [15118,] "Yamaha" "Samsung" "Sabritas" "Oxxo" "DHL"      
## [15119,] "Yamaha" "Samsung" "Sabritas" "Oxxo" "Google"   
## [15120,] "Yamaha" "Samsung" "Sabritas" "Oxxo" "Lego"

¿Para qué sirve encontrar el número de permutaciones y la forma en que se agrupan?

Eso sería el espacio muestral que ya construído éste, permite hacer interpretaciones en términos probabilísticos.

Interpretación

El resultado de las permutaciones permite construir un espacio muestral que ofrece la oportunidad de conocer en términos de probabilidad, la cantidad de ocasiones y lo que representa un evento conforme a todo el espacio muestral, es decir frecuencia y frecuencia porcentual.

Preguntas sobre espacio muestral nombres

¿En cuántas ocasiones aparece el nombre de Laura en permutaciones de dos en dos?. Aparece PENDIENTE(16) ocasiones. ¿En cuántas ocasiones aparece el nombre de Oscar en las combinaciones de dos en dos?, Aparece PENDIENTE(16) ocasiones.

En las permutaciones de nombres de dos en dos, ¿en cuántas ocasiones existe Laura y Oscar juntos o contiguos y en ese orden?. Se utiliza la función subset() para hacer filtros y responder a las preguntas.

La nominación [ , ] significa acceder al valor de un data frame por la primer colmna y [ ,2] la segunda columna.

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Laura" & Pern.nombres[,2] == "Oscar")
filtro
##      [,1]    [,2]   
## [1,] "Laura" "Oscar"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Laura y Oscar juntos en ese orden, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  1  ocasiones en que se encuentran Laura y Oscar juntos en ese orden, de un total de  182  representan  0.55 %"

En las permutaciones de nombres de dos en dos, ¿en cuántas ocasiones existe Oscar en la primer columna de todo el espacio muestral?

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Oscar")
filtro
##       [,1]    [,2]     
##  [1,] "Oscar" "Alberto"
##  [2,] "Oscar" "Ana"    
##  [3,] "Oscar" "Diego"  
##  [4,] "Oscar" "Hugo"   
##  [5,] "Oscar" "Juan"   
##  [6,] "Oscar" "Laura"  
##  [7,] "Oscar" "Lucy"   
##  [8,] "Oscar" "Luis"   
##  [9,] "Oscar" "Maria"  
## [10,] "Oscar" "Paco"   
## [11,] "Oscar" "Paty"   
## [12,] "Oscar" "Pedro"  
## [13,] "Oscar" "Rubén"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran Oscar en la primer columna  , de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  13  ocasiones en que se encuentran Oscar en la primer columna  , de un total de  182  representan  7.14 %"

En cuántas ocasiones aparece en primera columna Oscar y Paco o Paty en segunda columna

filtro <- subset(Pern.nombres, Pern.nombres[,1] == "Oscar" & (Pern.nombres[,2] == "Paco" | Pern.nombres[,2] == "Paty"))
filtro
##      [,1]    [,2]  
## [1,] "Oscar" "Paco"
## [2,] "Oscar" "Paty"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " ocasiones en que se encuentran aparece en primera columna Oscar y Paco o Paty en segunda columna, de un total de ", nrow(Pern.nombres), " representan ", round(frecuencia / nrow(Pern.nombres) * 100, 2), "%")
## [1] "Existen  2  ocasiones en que se encuentran aparece en primera columna Oscar y Paco o Paty en segunda columna, de un total de  182  representan  1.1 %"

Preguntas sobre espacio muestral equipos

En cuántas ocasiones aparece de manera contigua y en este orden las empresas de DHL y Adidas en primera y segunda columna respectivamente.

filtro <- subset(Pn.empresas, (Pn.empresas[,1] == "DHL" & Pn.empresas[,2] == "Adidas"))
filtro
##        [,1]  [,2]     [,3]        [,4]        [,5]       
##   [1,] "DHL" "Adidas" "Chevrolet" "Google"    "Lego"     
##   [2,] "DHL" "Adidas" "Chevrolet" "Google"    "Oxxo"     
##   [3,] "DHL" "Adidas" "Chevrolet" "Google"    "Sabritas" 
##   [4,] "DHL" "Adidas" "Chevrolet" "Google"    "Samsung"  
##   [5,] "DHL" "Adidas" "Chevrolet" "Google"    "Yamaha"   
##   [6,] "DHL" "Adidas" "Chevrolet" "Lego"      "Google"   
##   [7,] "DHL" "Adidas" "Chevrolet" "Lego"      "Oxxo"     
##   [8,] "DHL" "Adidas" "Chevrolet" "Lego"      "Sabritas" 
##   [9,] "DHL" "Adidas" "Chevrolet" "Lego"      "Samsung"  
##  [10,] "DHL" "Adidas" "Chevrolet" "Lego"      "Yamaha"   
##  [11,] "DHL" "Adidas" "Chevrolet" "Oxxo"      "Google"   
##  [12,] "DHL" "Adidas" "Chevrolet" "Oxxo"      "Lego"     
##  [13,] "DHL" "Adidas" "Chevrolet" "Oxxo"      "Sabritas" 
##  [14,] "DHL" "Adidas" "Chevrolet" "Oxxo"      "Samsung"  
##  [15,] "DHL" "Adidas" "Chevrolet" "Oxxo"      "Yamaha"   
##  [16,] "DHL" "Adidas" "Chevrolet" "Sabritas"  "Google"   
##  [17,] "DHL" "Adidas" "Chevrolet" "Sabritas"  "Lego"     
##  [18,] "DHL" "Adidas" "Chevrolet" "Sabritas"  "Oxxo"     
##  [19,] "DHL" "Adidas" "Chevrolet" "Sabritas"  "Samsung"  
##  [20,] "DHL" "Adidas" "Chevrolet" "Sabritas"  "Yamaha"   
##  [21,] "DHL" "Adidas" "Chevrolet" "Samsung"   "Google"   
##  [22,] "DHL" "Adidas" "Chevrolet" "Samsung"   "Lego"     
##  [23,] "DHL" "Adidas" "Chevrolet" "Samsung"   "Oxxo"     
##  [24,] "DHL" "Adidas" "Chevrolet" "Samsung"   "Sabritas" 
##  [25,] "DHL" "Adidas" "Chevrolet" "Samsung"   "Yamaha"   
##  [26,] "DHL" "Adidas" "Chevrolet" "Yamaha"    "Google"   
##  [27,] "DHL" "Adidas" "Chevrolet" "Yamaha"    "Lego"     
##  [28,] "DHL" "Adidas" "Chevrolet" "Yamaha"    "Oxxo"     
##  [29,] "DHL" "Adidas" "Chevrolet" "Yamaha"    "Sabritas" 
##  [30,] "DHL" "Adidas" "Chevrolet" "Yamaha"    "Samsung"  
##  [31,] "DHL" "Adidas" "Google"    "Chevrolet" "Lego"     
##  [32,] "DHL" "Adidas" "Google"    "Chevrolet" "Oxxo"     
##  [33,] "DHL" "Adidas" "Google"    "Chevrolet" "Sabritas" 
##  [34,] "DHL" "Adidas" "Google"    "Chevrolet" "Samsung"  
##  [35,] "DHL" "Adidas" "Google"    "Chevrolet" "Yamaha"   
##  [36,] "DHL" "Adidas" "Google"    "Lego"      "Chevrolet"
##  [37,] "DHL" "Adidas" "Google"    "Lego"      "Oxxo"     
##  [38,] "DHL" "Adidas" "Google"    "Lego"      "Sabritas" 
##  [39,] "DHL" "Adidas" "Google"    "Lego"      "Samsung"  
##  [40,] "DHL" "Adidas" "Google"    "Lego"      "Yamaha"   
##  [41,] "DHL" "Adidas" "Google"    "Oxxo"      "Chevrolet"
##  [42,] "DHL" "Adidas" "Google"    "Oxxo"      "Lego"     
##  [43,] "DHL" "Adidas" "Google"    "Oxxo"      "Sabritas" 
##  [44,] "DHL" "Adidas" "Google"    "Oxxo"      "Samsung"  
##  [45,] "DHL" "Adidas" "Google"    "Oxxo"      "Yamaha"   
##  [46,] "DHL" "Adidas" "Google"    "Sabritas"  "Chevrolet"
##  [47,] "DHL" "Adidas" "Google"    "Sabritas"  "Lego"     
##  [48,] "DHL" "Adidas" "Google"    "Sabritas"  "Oxxo"     
##  [49,] "DHL" "Adidas" "Google"    "Sabritas"  "Samsung"  
##  [50,] "DHL" "Adidas" "Google"    "Sabritas"  "Yamaha"   
##  [51,] "DHL" "Adidas" "Google"    "Samsung"   "Chevrolet"
##  [52,] "DHL" "Adidas" "Google"    "Samsung"   "Lego"     
##  [53,] "DHL" "Adidas" "Google"    "Samsung"   "Oxxo"     
##  [54,] "DHL" "Adidas" "Google"    "Samsung"   "Sabritas" 
##  [55,] "DHL" "Adidas" "Google"    "Samsung"   "Yamaha"   
##  [56,] "DHL" "Adidas" "Google"    "Yamaha"    "Chevrolet"
##  [57,] "DHL" "Adidas" "Google"    "Yamaha"    "Lego"     
##  [58,] "DHL" "Adidas" "Google"    "Yamaha"    "Oxxo"     
##  [59,] "DHL" "Adidas" "Google"    "Yamaha"    "Sabritas" 
##  [60,] "DHL" "Adidas" "Google"    "Yamaha"    "Samsung"  
##  [61,] "DHL" "Adidas" "Lego"      "Chevrolet" "Google"   
##  [62,] "DHL" "Adidas" "Lego"      "Chevrolet" "Oxxo"     
##  [63,] "DHL" "Adidas" "Lego"      "Chevrolet" "Sabritas" 
##  [64,] "DHL" "Adidas" "Lego"      "Chevrolet" "Samsung"  
##  [65,] "DHL" "Adidas" "Lego"      "Chevrolet" "Yamaha"   
##  [66,] "DHL" "Adidas" "Lego"      "Google"    "Chevrolet"
##  [67,] "DHL" "Adidas" "Lego"      "Google"    "Oxxo"     
##  [68,] "DHL" "Adidas" "Lego"      "Google"    "Sabritas" 
##  [69,] "DHL" "Adidas" "Lego"      "Google"    "Samsung"  
##  [70,] "DHL" "Adidas" "Lego"      "Google"    "Yamaha"   
##  [71,] "DHL" "Adidas" "Lego"      "Oxxo"      "Chevrolet"
##  [72,] "DHL" "Adidas" "Lego"      "Oxxo"      "Google"   
##  [73,] "DHL" "Adidas" "Lego"      "Oxxo"      "Sabritas" 
##  [74,] "DHL" "Adidas" "Lego"      "Oxxo"      "Samsung"  
##  [75,] "DHL" "Adidas" "Lego"      "Oxxo"      "Yamaha"   
##  [76,] "DHL" "Adidas" "Lego"      "Sabritas"  "Chevrolet"
##  [77,] "DHL" "Adidas" "Lego"      "Sabritas"  "Google"   
##  [78,] "DHL" "Adidas" "Lego"      "Sabritas"  "Oxxo"     
##  [79,] "DHL" "Adidas" "Lego"      "Sabritas"  "Samsung"  
##  [80,] "DHL" "Adidas" "Lego"      "Sabritas"  "Yamaha"   
##  [81,] "DHL" "Adidas" "Lego"      "Samsung"   "Chevrolet"
##  [82,] "DHL" "Adidas" "Lego"      "Samsung"   "Google"   
##  [83,] "DHL" "Adidas" "Lego"      "Samsung"   "Oxxo"     
##  [84,] "DHL" "Adidas" "Lego"      "Samsung"   "Sabritas" 
##  [85,] "DHL" "Adidas" "Lego"      "Samsung"   "Yamaha"   
##  [86,] "DHL" "Adidas" "Lego"      "Yamaha"    "Chevrolet"
##  [87,] "DHL" "Adidas" "Lego"      "Yamaha"    "Google"   
##  [88,] "DHL" "Adidas" "Lego"      "Yamaha"    "Oxxo"     
##  [89,] "DHL" "Adidas" "Lego"      "Yamaha"    "Sabritas" 
##  [90,] "DHL" "Adidas" "Lego"      "Yamaha"    "Samsung"  
##  [91,] "DHL" "Adidas" "Oxxo"      "Chevrolet" "Google"   
##  [92,] "DHL" "Adidas" "Oxxo"      "Chevrolet" "Lego"     
##  [93,] "DHL" "Adidas" "Oxxo"      "Chevrolet" "Sabritas" 
##  [94,] "DHL" "Adidas" "Oxxo"      "Chevrolet" "Samsung"  
##  [95,] "DHL" "Adidas" "Oxxo"      "Chevrolet" "Yamaha"   
##  [96,] "DHL" "Adidas" "Oxxo"      "Google"    "Chevrolet"
##  [97,] "DHL" "Adidas" "Oxxo"      "Google"    "Lego"     
##  [98,] "DHL" "Adidas" "Oxxo"      "Google"    "Sabritas" 
##  [99,] "DHL" "Adidas" "Oxxo"      "Google"    "Samsung"  
## [100,] "DHL" "Adidas" "Oxxo"      "Google"    "Yamaha"   
## [101,] "DHL" "Adidas" "Oxxo"      "Lego"      "Chevrolet"
## [102,] "DHL" "Adidas" "Oxxo"      "Lego"      "Google"   
## [103,] "DHL" "Adidas" "Oxxo"      "Lego"      "Sabritas" 
## [104,] "DHL" "Adidas" "Oxxo"      "Lego"      "Samsung"  
## [105,] "DHL" "Adidas" "Oxxo"      "Lego"      "Yamaha"   
## [106,] "DHL" "Adidas" "Oxxo"      "Sabritas"  "Chevrolet"
## [107,] "DHL" "Adidas" "Oxxo"      "Sabritas"  "Google"   
## [108,] "DHL" "Adidas" "Oxxo"      "Sabritas"  "Lego"     
## [109,] "DHL" "Adidas" "Oxxo"      "Sabritas"  "Samsung"  
## [110,] "DHL" "Adidas" "Oxxo"      "Sabritas"  "Yamaha"   
## [111,] "DHL" "Adidas" "Oxxo"      "Samsung"   "Chevrolet"
## [112,] "DHL" "Adidas" "Oxxo"      "Samsung"   "Google"   
## [113,] "DHL" "Adidas" "Oxxo"      "Samsung"   "Lego"     
## [114,] "DHL" "Adidas" "Oxxo"      "Samsung"   "Sabritas" 
## [115,] "DHL" "Adidas" "Oxxo"      "Samsung"   "Yamaha"   
## [116,] "DHL" "Adidas" "Oxxo"      "Yamaha"    "Chevrolet"
## [117,] "DHL" "Adidas" "Oxxo"      "Yamaha"    "Google"   
## [118,] "DHL" "Adidas" "Oxxo"      "Yamaha"    "Lego"     
## [119,] "DHL" "Adidas" "Oxxo"      "Yamaha"    "Sabritas" 
## [120,] "DHL" "Adidas" "Oxxo"      "Yamaha"    "Samsung"  
## [121,] "DHL" "Adidas" "Sabritas"  "Chevrolet" "Google"   
## [122,] "DHL" "Adidas" "Sabritas"  "Chevrolet" "Lego"     
## [123,] "DHL" "Adidas" "Sabritas"  "Chevrolet" "Oxxo"     
## [124,] "DHL" "Adidas" "Sabritas"  "Chevrolet" "Samsung"  
## [125,] "DHL" "Adidas" "Sabritas"  "Chevrolet" "Yamaha"   
## [126,] "DHL" "Adidas" "Sabritas"  "Google"    "Chevrolet"
## [127,] "DHL" "Adidas" "Sabritas"  "Google"    "Lego"     
## [128,] "DHL" "Adidas" "Sabritas"  "Google"    "Oxxo"     
## [129,] "DHL" "Adidas" "Sabritas"  "Google"    "Samsung"  
## [130,] "DHL" "Adidas" "Sabritas"  "Google"    "Yamaha"   
## [131,] "DHL" "Adidas" "Sabritas"  "Lego"      "Chevrolet"
## [132,] "DHL" "Adidas" "Sabritas"  "Lego"      "Google"   
## [133,] "DHL" "Adidas" "Sabritas"  "Lego"      "Oxxo"     
## [134,] "DHL" "Adidas" "Sabritas"  "Lego"      "Samsung"  
## [135,] "DHL" "Adidas" "Sabritas"  "Lego"      "Yamaha"   
## [136,] "DHL" "Adidas" "Sabritas"  "Oxxo"      "Chevrolet"
## [137,] "DHL" "Adidas" "Sabritas"  "Oxxo"      "Google"   
## [138,] "DHL" "Adidas" "Sabritas"  "Oxxo"      "Lego"     
## [139,] "DHL" "Adidas" "Sabritas"  "Oxxo"      "Samsung"  
## [140,] "DHL" "Adidas" "Sabritas"  "Oxxo"      "Yamaha"   
## [141,] "DHL" "Adidas" "Sabritas"  "Samsung"   "Chevrolet"
## [142,] "DHL" "Adidas" "Sabritas"  "Samsung"   "Google"   
## [143,] "DHL" "Adidas" "Sabritas"  "Samsung"   "Lego"     
## [144,] "DHL" "Adidas" "Sabritas"  "Samsung"   "Oxxo"     
## [145,] "DHL" "Adidas" "Sabritas"  "Samsung"   "Yamaha"   
## [146,] "DHL" "Adidas" "Sabritas"  "Yamaha"    "Chevrolet"
## [147,] "DHL" "Adidas" "Sabritas"  "Yamaha"    "Google"   
## [148,] "DHL" "Adidas" "Sabritas"  "Yamaha"    "Lego"     
## [149,] "DHL" "Adidas" "Sabritas"  "Yamaha"    "Oxxo"     
## [150,] "DHL" "Adidas" "Sabritas"  "Yamaha"    "Samsung"  
## [151,] "DHL" "Adidas" "Samsung"   "Chevrolet" "Google"   
## [152,] "DHL" "Adidas" "Samsung"   "Chevrolet" "Lego"     
## [153,] "DHL" "Adidas" "Samsung"   "Chevrolet" "Oxxo"     
## [154,] "DHL" "Adidas" "Samsung"   "Chevrolet" "Sabritas" 
## [155,] "DHL" "Adidas" "Samsung"   "Chevrolet" "Yamaha"   
## [156,] "DHL" "Adidas" "Samsung"   "Google"    "Chevrolet"
## [157,] "DHL" "Adidas" "Samsung"   "Google"    "Lego"     
## [158,] "DHL" "Adidas" "Samsung"   "Google"    "Oxxo"     
## [159,] "DHL" "Adidas" "Samsung"   "Google"    "Sabritas" 
## [160,] "DHL" "Adidas" "Samsung"   "Google"    "Yamaha"   
## [161,] "DHL" "Adidas" "Samsung"   "Lego"      "Chevrolet"
## [162,] "DHL" "Adidas" "Samsung"   "Lego"      "Google"   
## [163,] "DHL" "Adidas" "Samsung"   "Lego"      "Oxxo"     
## [164,] "DHL" "Adidas" "Samsung"   "Lego"      "Sabritas" 
## [165,] "DHL" "Adidas" "Samsung"   "Lego"      "Yamaha"   
## [166,] "DHL" "Adidas" "Samsung"   "Oxxo"      "Chevrolet"
## [167,] "DHL" "Adidas" "Samsung"   "Oxxo"      "Google"   
## [168,] "DHL" "Adidas" "Samsung"   "Oxxo"      "Lego"     
## [169,] "DHL" "Adidas" "Samsung"   "Oxxo"      "Sabritas" 
## [170,] "DHL" "Adidas" "Samsung"   "Oxxo"      "Yamaha"   
## [171,] "DHL" "Adidas" "Samsung"   "Sabritas"  "Chevrolet"
## [172,] "DHL" "Adidas" "Samsung"   "Sabritas"  "Google"   
## [173,] "DHL" "Adidas" "Samsung"   "Sabritas"  "Lego"     
## [174,] "DHL" "Adidas" "Samsung"   "Sabritas"  "Oxxo"     
## [175,] "DHL" "Adidas" "Samsung"   "Sabritas"  "Yamaha"   
## [176,] "DHL" "Adidas" "Samsung"   "Yamaha"    "Chevrolet"
## [177,] "DHL" "Adidas" "Samsung"   "Yamaha"    "Google"   
## [178,] "DHL" "Adidas" "Samsung"   "Yamaha"    "Lego"     
## [179,] "DHL" "Adidas" "Samsung"   "Yamaha"    "Oxxo"     
## [180,] "DHL" "Adidas" "Samsung"   "Yamaha"    "Sabritas" 
## [181,] "DHL" "Adidas" "Yamaha"    "Chevrolet" "Google"   
## [182,] "DHL" "Adidas" "Yamaha"    "Chevrolet" "Lego"     
## [183,] "DHL" "Adidas" "Yamaha"    "Chevrolet" "Oxxo"     
## [184,] "DHL" "Adidas" "Yamaha"    "Chevrolet" "Sabritas" 
## [185,] "DHL" "Adidas" "Yamaha"    "Chevrolet" "Samsung"  
## [186,] "DHL" "Adidas" "Yamaha"    "Google"    "Chevrolet"
## [187,] "DHL" "Adidas" "Yamaha"    "Google"    "Lego"     
## [188,] "DHL" "Adidas" "Yamaha"    "Google"    "Oxxo"     
## [189,] "DHL" "Adidas" "Yamaha"    "Google"    "Sabritas" 
## [190,] "DHL" "Adidas" "Yamaha"    "Google"    "Samsung"  
## [191,] "DHL" "Adidas" "Yamaha"    "Lego"      "Chevrolet"
## [192,] "DHL" "Adidas" "Yamaha"    "Lego"      "Google"   
## [193,] "DHL" "Adidas" "Yamaha"    "Lego"      "Oxxo"     
## [194,] "DHL" "Adidas" "Yamaha"    "Lego"      "Sabritas" 
## [195,] "DHL" "Adidas" "Yamaha"    "Lego"      "Samsung"  
## [196,] "DHL" "Adidas" "Yamaha"    "Oxxo"      "Chevrolet"
## [197,] "DHL" "Adidas" "Yamaha"    "Oxxo"      "Google"   
## [198,] "DHL" "Adidas" "Yamaha"    "Oxxo"      "Lego"     
## [199,] "DHL" "Adidas" "Yamaha"    "Oxxo"      "Sabritas" 
## [200,] "DHL" "Adidas" "Yamaha"    "Oxxo"      "Samsung"  
## [201,] "DHL" "Adidas" "Yamaha"    "Sabritas"  "Chevrolet"
## [202,] "DHL" "Adidas" "Yamaha"    "Sabritas"  "Google"   
## [203,] "DHL" "Adidas" "Yamaha"    "Sabritas"  "Lego"     
## [204,] "DHL" "Adidas" "Yamaha"    "Sabritas"  "Oxxo"     
## [205,] "DHL" "Adidas" "Yamaha"    "Sabritas"  "Samsung"  
## [206,] "DHL" "Adidas" "Yamaha"    "Samsung"   "Chevrolet"
## [207,] "DHL" "Adidas" "Yamaha"    "Samsung"   "Google"   
## [208,] "DHL" "Adidas" "Yamaha"    "Samsung"   "Lego"     
## [209,] "DHL" "Adidas" "Yamaha"    "Samsung"   "Oxxo"     
## [210,] "DHL" "Adidas" "Yamaha"    "Samsung"   "Sabritas"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " aparece de manera contigua y en este orden los equipos de DHL y Adidas en cualquier columna , de un total de ", nrow(Pn.empresas), " representan ", round(frecuencia / nrow(Pn.empresas) * 100, 2), "%")
## [1] "Existen  210  aparece de manera contigua y en este orden los equipos de DHL y Adidas en cualquier columna , de un total de  15120  representan  1.39 %"

En cuántas ocasiones aparece de manera contigua y en este orden las empresas de Chevrolet y Adidas en primera y segunda columna respectivamente.

filtro <- subset(Pn.empresas, (Pn.empresas[,1] == "Chevrolet" & Pn.empresas[,2] == "Adidas"))
filtro
##        [,1]        [,2]     [,3]       [,4]       [,5]      
##   [1,] "Chevrolet" "Adidas" "DHL"      "Google"   "Lego"    
##   [2,] "Chevrolet" "Adidas" "DHL"      "Google"   "Oxxo"    
##   [3,] "Chevrolet" "Adidas" "DHL"      "Google"   "Sabritas"
##   [4,] "Chevrolet" "Adidas" "DHL"      "Google"   "Samsung" 
##   [5,] "Chevrolet" "Adidas" "DHL"      "Google"   "Yamaha"  
##   [6,] "Chevrolet" "Adidas" "DHL"      "Lego"     "Google"  
##   [7,] "Chevrolet" "Adidas" "DHL"      "Lego"     "Oxxo"    
##   [8,] "Chevrolet" "Adidas" "DHL"      "Lego"     "Sabritas"
##   [9,] "Chevrolet" "Adidas" "DHL"      "Lego"     "Samsung" 
##  [10,] "Chevrolet" "Adidas" "DHL"      "Lego"     "Yamaha"  
##  [11,] "Chevrolet" "Adidas" "DHL"      "Oxxo"     "Google"  
##  [12,] "Chevrolet" "Adidas" "DHL"      "Oxxo"     "Lego"    
##  [13,] "Chevrolet" "Adidas" "DHL"      "Oxxo"     "Sabritas"
##  [14,] "Chevrolet" "Adidas" "DHL"      "Oxxo"     "Samsung" 
##  [15,] "Chevrolet" "Adidas" "DHL"      "Oxxo"     "Yamaha"  
##  [16,] "Chevrolet" "Adidas" "DHL"      "Sabritas" "Google"  
##  [17,] "Chevrolet" "Adidas" "DHL"      "Sabritas" "Lego"    
##  [18,] "Chevrolet" "Adidas" "DHL"      "Sabritas" "Oxxo"    
##  [19,] "Chevrolet" "Adidas" "DHL"      "Sabritas" "Samsung" 
##  [20,] "Chevrolet" "Adidas" "DHL"      "Sabritas" "Yamaha"  
##  [21,] "Chevrolet" "Adidas" "DHL"      "Samsung"  "Google"  
##  [22,] "Chevrolet" "Adidas" "DHL"      "Samsung"  "Lego"    
##  [23,] "Chevrolet" "Adidas" "DHL"      "Samsung"  "Oxxo"    
##  [24,] "Chevrolet" "Adidas" "DHL"      "Samsung"  "Sabritas"
##  [25,] "Chevrolet" "Adidas" "DHL"      "Samsung"  "Yamaha"  
##  [26,] "Chevrolet" "Adidas" "DHL"      "Yamaha"   "Google"  
##  [27,] "Chevrolet" "Adidas" "DHL"      "Yamaha"   "Lego"    
##  [28,] "Chevrolet" "Adidas" "DHL"      "Yamaha"   "Oxxo"    
##  [29,] "Chevrolet" "Adidas" "DHL"      "Yamaha"   "Sabritas"
##  [30,] "Chevrolet" "Adidas" "DHL"      "Yamaha"   "Samsung" 
##  [31,] "Chevrolet" "Adidas" "Google"   "DHL"      "Lego"    
##  [32,] "Chevrolet" "Adidas" "Google"   "DHL"      "Oxxo"    
##  [33,] "Chevrolet" "Adidas" "Google"   "DHL"      "Sabritas"
##  [34,] "Chevrolet" "Adidas" "Google"   "DHL"      "Samsung" 
##  [35,] "Chevrolet" "Adidas" "Google"   "DHL"      "Yamaha"  
##  [36,] "Chevrolet" "Adidas" "Google"   "Lego"     "DHL"     
##  [37,] "Chevrolet" "Adidas" "Google"   "Lego"     "Oxxo"    
##  [38,] "Chevrolet" "Adidas" "Google"   "Lego"     "Sabritas"
##  [39,] "Chevrolet" "Adidas" "Google"   "Lego"     "Samsung" 
##  [40,] "Chevrolet" "Adidas" "Google"   "Lego"     "Yamaha"  
##  [41,] "Chevrolet" "Adidas" "Google"   "Oxxo"     "DHL"     
##  [42,] "Chevrolet" "Adidas" "Google"   "Oxxo"     "Lego"    
##  [43,] "Chevrolet" "Adidas" "Google"   "Oxxo"     "Sabritas"
##  [44,] "Chevrolet" "Adidas" "Google"   "Oxxo"     "Samsung" 
##  [45,] "Chevrolet" "Adidas" "Google"   "Oxxo"     "Yamaha"  
##  [46,] "Chevrolet" "Adidas" "Google"   "Sabritas" "DHL"     
##  [47,] "Chevrolet" "Adidas" "Google"   "Sabritas" "Lego"    
##  [48,] "Chevrolet" "Adidas" "Google"   "Sabritas" "Oxxo"    
##  [49,] "Chevrolet" "Adidas" "Google"   "Sabritas" "Samsung" 
##  [50,] "Chevrolet" "Adidas" "Google"   "Sabritas" "Yamaha"  
##  [51,] "Chevrolet" "Adidas" "Google"   "Samsung"  "DHL"     
##  [52,] "Chevrolet" "Adidas" "Google"   "Samsung"  "Lego"    
##  [53,] "Chevrolet" "Adidas" "Google"   "Samsung"  "Oxxo"    
##  [54,] "Chevrolet" "Adidas" "Google"   "Samsung"  "Sabritas"
##  [55,] "Chevrolet" "Adidas" "Google"   "Samsung"  "Yamaha"  
##  [56,] "Chevrolet" "Adidas" "Google"   "Yamaha"   "DHL"     
##  [57,] "Chevrolet" "Adidas" "Google"   "Yamaha"   "Lego"    
##  [58,] "Chevrolet" "Adidas" "Google"   "Yamaha"   "Oxxo"    
##  [59,] "Chevrolet" "Adidas" "Google"   "Yamaha"   "Sabritas"
##  [60,] "Chevrolet" "Adidas" "Google"   "Yamaha"   "Samsung" 
##  [61,] "Chevrolet" "Adidas" "Lego"     "DHL"      "Google"  
##  [62,] "Chevrolet" "Adidas" "Lego"     "DHL"      "Oxxo"    
##  [63,] "Chevrolet" "Adidas" "Lego"     "DHL"      "Sabritas"
##  [64,] "Chevrolet" "Adidas" "Lego"     "DHL"      "Samsung" 
##  [65,] "Chevrolet" "Adidas" "Lego"     "DHL"      "Yamaha"  
##  [66,] "Chevrolet" "Adidas" "Lego"     "Google"   "DHL"     
##  [67,] "Chevrolet" "Adidas" "Lego"     "Google"   "Oxxo"    
##  [68,] "Chevrolet" "Adidas" "Lego"     "Google"   "Sabritas"
##  [69,] "Chevrolet" "Adidas" "Lego"     "Google"   "Samsung" 
##  [70,] "Chevrolet" "Adidas" "Lego"     "Google"   "Yamaha"  
##  [71,] "Chevrolet" "Adidas" "Lego"     "Oxxo"     "DHL"     
##  [72,] "Chevrolet" "Adidas" "Lego"     "Oxxo"     "Google"  
##  [73,] "Chevrolet" "Adidas" "Lego"     "Oxxo"     "Sabritas"
##  [74,] "Chevrolet" "Adidas" "Lego"     "Oxxo"     "Samsung" 
##  [75,] "Chevrolet" "Adidas" "Lego"     "Oxxo"     "Yamaha"  
##  [76,] "Chevrolet" "Adidas" "Lego"     "Sabritas" "DHL"     
##  [77,] "Chevrolet" "Adidas" "Lego"     "Sabritas" "Google"  
##  [78,] "Chevrolet" "Adidas" "Lego"     "Sabritas" "Oxxo"    
##  [79,] "Chevrolet" "Adidas" "Lego"     "Sabritas" "Samsung" 
##  [80,] "Chevrolet" "Adidas" "Lego"     "Sabritas" "Yamaha"  
##  [81,] "Chevrolet" "Adidas" "Lego"     "Samsung"  "DHL"     
##  [82,] "Chevrolet" "Adidas" "Lego"     "Samsung"  "Google"  
##  [83,] "Chevrolet" "Adidas" "Lego"     "Samsung"  "Oxxo"    
##  [84,] "Chevrolet" "Adidas" "Lego"     "Samsung"  "Sabritas"
##  [85,] "Chevrolet" "Adidas" "Lego"     "Samsung"  "Yamaha"  
##  [86,] "Chevrolet" "Adidas" "Lego"     "Yamaha"   "DHL"     
##  [87,] "Chevrolet" "Adidas" "Lego"     "Yamaha"   "Google"  
##  [88,] "Chevrolet" "Adidas" "Lego"     "Yamaha"   "Oxxo"    
##  [89,] "Chevrolet" "Adidas" "Lego"     "Yamaha"   "Sabritas"
##  [90,] "Chevrolet" "Adidas" "Lego"     "Yamaha"   "Samsung" 
##  [91,] "Chevrolet" "Adidas" "Oxxo"     "DHL"      "Google"  
##  [92,] "Chevrolet" "Adidas" "Oxxo"     "DHL"      "Lego"    
##  [93,] "Chevrolet" "Adidas" "Oxxo"     "DHL"      "Sabritas"
##  [94,] "Chevrolet" "Adidas" "Oxxo"     "DHL"      "Samsung" 
##  [95,] "Chevrolet" "Adidas" "Oxxo"     "DHL"      "Yamaha"  
##  [96,] "Chevrolet" "Adidas" "Oxxo"     "Google"   "DHL"     
##  [97,] "Chevrolet" "Adidas" "Oxxo"     "Google"   "Lego"    
##  [98,] "Chevrolet" "Adidas" "Oxxo"     "Google"   "Sabritas"
##  [99,] "Chevrolet" "Adidas" "Oxxo"     "Google"   "Samsung" 
## [100,] "Chevrolet" "Adidas" "Oxxo"     "Google"   "Yamaha"  
## [101,] "Chevrolet" "Adidas" "Oxxo"     "Lego"     "DHL"     
## [102,] "Chevrolet" "Adidas" "Oxxo"     "Lego"     "Google"  
## [103,] "Chevrolet" "Adidas" "Oxxo"     "Lego"     "Sabritas"
## [104,] "Chevrolet" "Adidas" "Oxxo"     "Lego"     "Samsung" 
## [105,] "Chevrolet" "Adidas" "Oxxo"     "Lego"     "Yamaha"  
## [106,] "Chevrolet" "Adidas" "Oxxo"     "Sabritas" "DHL"     
## [107,] "Chevrolet" "Adidas" "Oxxo"     "Sabritas" "Google"  
## [108,] "Chevrolet" "Adidas" "Oxxo"     "Sabritas" "Lego"    
## [109,] "Chevrolet" "Adidas" "Oxxo"     "Sabritas" "Samsung" 
## [110,] "Chevrolet" "Adidas" "Oxxo"     "Sabritas" "Yamaha"  
## [111,] "Chevrolet" "Adidas" "Oxxo"     "Samsung"  "DHL"     
## [112,] "Chevrolet" "Adidas" "Oxxo"     "Samsung"  "Google"  
## [113,] "Chevrolet" "Adidas" "Oxxo"     "Samsung"  "Lego"    
## [114,] "Chevrolet" "Adidas" "Oxxo"     "Samsung"  "Sabritas"
## [115,] "Chevrolet" "Adidas" "Oxxo"     "Samsung"  "Yamaha"  
## [116,] "Chevrolet" "Adidas" "Oxxo"     "Yamaha"   "DHL"     
## [117,] "Chevrolet" "Adidas" "Oxxo"     "Yamaha"   "Google"  
## [118,] "Chevrolet" "Adidas" "Oxxo"     "Yamaha"   "Lego"    
## [119,] "Chevrolet" "Adidas" "Oxxo"     "Yamaha"   "Sabritas"
## [120,] "Chevrolet" "Adidas" "Oxxo"     "Yamaha"   "Samsung" 
## [121,] "Chevrolet" "Adidas" "Sabritas" "DHL"      "Google"  
## [122,] "Chevrolet" "Adidas" "Sabritas" "DHL"      "Lego"    
## [123,] "Chevrolet" "Adidas" "Sabritas" "DHL"      "Oxxo"    
## [124,] "Chevrolet" "Adidas" "Sabritas" "DHL"      "Samsung" 
## [125,] "Chevrolet" "Adidas" "Sabritas" "DHL"      "Yamaha"  
## [126,] "Chevrolet" "Adidas" "Sabritas" "Google"   "DHL"     
## [127,] "Chevrolet" "Adidas" "Sabritas" "Google"   "Lego"    
## [128,] "Chevrolet" "Adidas" "Sabritas" "Google"   "Oxxo"    
## [129,] "Chevrolet" "Adidas" "Sabritas" "Google"   "Samsung" 
## [130,] "Chevrolet" "Adidas" "Sabritas" "Google"   "Yamaha"  
## [131,] "Chevrolet" "Adidas" "Sabritas" "Lego"     "DHL"     
## [132,] "Chevrolet" "Adidas" "Sabritas" "Lego"     "Google"  
## [133,] "Chevrolet" "Adidas" "Sabritas" "Lego"     "Oxxo"    
## [134,] "Chevrolet" "Adidas" "Sabritas" "Lego"     "Samsung" 
## [135,] "Chevrolet" "Adidas" "Sabritas" "Lego"     "Yamaha"  
## [136,] "Chevrolet" "Adidas" "Sabritas" "Oxxo"     "DHL"     
## [137,] "Chevrolet" "Adidas" "Sabritas" "Oxxo"     "Google"  
## [138,] "Chevrolet" "Adidas" "Sabritas" "Oxxo"     "Lego"    
## [139,] "Chevrolet" "Adidas" "Sabritas" "Oxxo"     "Samsung" 
## [140,] "Chevrolet" "Adidas" "Sabritas" "Oxxo"     "Yamaha"  
## [141,] "Chevrolet" "Adidas" "Sabritas" "Samsung"  "DHL"     
## [142,] "Chevrolet" "Adidas" "Sabritas" "Samsung"  "Google"  
## [143,] "Chevrolet" "Adidas" "Sabritas" "Samsung"  "Lego"    
## [144,] "Chevrolet" "Adidas" "Sabritas" "Samsung"  "Oxxo"    
## [145,] "Chevrolet" "Adidas" "Sabritas" "Samsung"  "Yamaha"  
## [146,] "Chevrolet" "Adidas" "Sabritas" "Yamaha"   "DHL"     
## [147,] "Chevrolet" "Adidas" "Sabritas" "Yamaha"   "Google"  
## [148,] "Chevrolet" "Adidas" "Sabritas" "Yamaha"   "Lego"    
## [149,] "Chevrolet" "Adidas" "Sabritas" "Yamaha"   "Oxxo"    
## [150,] "Chevrolet" "Adidas" "Sabritas" "Yamaha"   "Samsung" 
## [151,] "Chevrolet" "Adidas" "Samsung"  "DHL"      "Google"  
## [152,] "Chevrolet" "Adidas" "Samsung"  "DHL"      "Lego"    
## [153,] "Chevrolet" "Adidas" "Samsung"  "DHL"      "Oxxo"    
## [154,] "Chevrolet" "Adidas" "Samsung"  "DHL"      "Sabritas"
## [155,] "Chevrolet" "Adidas" "Samsung"  "DHL"      "Yamaha"  
## [156,] "Chevrolet" "Adidas" "Samsung"  "Google"   "DHL"     
## [157,] "Chevrolet" "Adidas" "Samsung"  "Google"   "Lego"    
## [158,] "Chevrolet" "Adidas" "Samsung"  "Google"   "Oxxo"    
## [159,] "Chevrolet" "Adidas" "Samsung"  "Google"   "Sabritas"
## [160,] "Chevrolet" "Adidas" "Samsung"  "Google"   "Yamaha"  
## [161,] "Chevrolet" "Adidas" "Samsung"  "Lego"     "DHL"     
## [162,] "Chevrolet" "Adidas" "Samsung"  "Lego"     "Google"  
## [163,] "Chevrolet" "Adidas" "Samsung"  "Lego"     "Oxxo"    
## [164,] "Chevrolet" "Adidas" "Samsung"  "Lego"     "Sabritas"
## [165,] "Chevrolet" "Adidas" "Samsung"  "Lego"     "Yamaha"  
## [166,] "Chevrolet" "Adidas" "Samsung"  "Oxxo"     "DHL"     
## [167,] "Chevrolet" "Adidas" "Samsung"  "Oxxo"     "Google"  
## [168,] "Chevrolet" "Adidas" "Samsung"  "Oxxo"     "Lego"    
## [169,] "Chevrolet" "Adidas" "Samsung"  "Oxxo"     "Sabritas"
## [170,] "Chevrolet" "Adidas" "Samsung"  "Oxxo"     "Yamaha"  
## [171,] "Chevrolet" "Adidas" "Samsung"  "Sabritas" "DHL"     
## [172,] "Chevrolet" "Adidas" "Samsung"  "Sabritas" "Google"  
## [173,] "Chevrolet" "Adidas" "Samsung"  "Sabritas" "Lego"    
## [174,] "Chevrolet" "Adidas" "Samsung"  "Sabritas" "Oxxo"    
## [175,] "Chevrolet" "Adidas" "Samsung"  "Sabritas" "Yamaha"  
## [176,] "Chevrolet" "Adidas" "Samsung"  "Yamaha"   "DHL"     
## [177,] "Chevrolet" "Adidas" "Samsung"  "Yamaha"   "Google"  
## [178,] "Chevrolet" "Adidas" "Samsung"  "Yamaha"   "Lego"    
## [179,] "Chevrolet" "Adidas" "Samsung"  "Yamaha"   "Oxxo"    
## [180,] "Chevrolet" "Adidas" "Samsung"  "Yamaha"   "Sabritas"
## [181,] "Chevrolet" "Adidas" "Yamaha"   "DHL"      "Google"  
## [182,] "Chevrolet" "Adidas" "Yamaha"   "DHL"      "Lego"    
## [183,] "Chevrolet" "Adidas" "Yamaha"   "DHL"      "Oxxo"    
## [184,] "Chevrolet" "Adidas" "Yamaha"   "DHL"      "Sabritas"
## [185,] "Chevrolet" "Adidas" "Yamaha"   "DHL"      "Samsung" 
## [186,] "Chevrolet" "Adidas" "Yamaha"   "Google"   "DHL"     
## [187,] "Chevrolet" "Adidas" "Yamaha"   "Google"   "Lego"    
## [188,] "Chevrolet" "Adidas" "Yamaha"   "Google"   "Oxxo"    
## [189,] "Chevrolet" "Adidas" "Yamaha"   "Google"   "Sabritas"
## [190,] "Chevrolet" "Adidas" "Yamaha"   "Google"   "Samsung" 
## [191,] "Chevrolet" "Adidas" "Yamaha"   "Lego"     "DHL"     
## [192,] "Chevrolet" "Adidas" "Yamaha"   "Lego"     "Google"  
## [193,] "Chevrolet" "Adidas" "Yamaha"   "Lego"     "Oxxo"    
## [194,] "Chevrolet" "Adidas" "Yamaha"   "Lego"     "Sabritas"
## [195,] "Chevrolet" "Adidas" "Yamaha"   "Lego"     "Samsung" 
## [196,] "Chevrolet" "Adidas" "Yamaha"   "Oxxo"     "DHL"     
## [197,] "Chevrolet" "Adidas" "Yamaha"   "Oxxo"     "Google"  
## [198,] "Chevrolet" "Adidas" "Yamaha"   "Oxxo"     "Lego"    
## [199,] "Chevrolet" "Adidas" "Yamaha"   "Oxxo"     "Sabritas"
## [200,] "Chevrolet" "Adidas" "Yamaha"   "Oxxo"     "Samsung" 
## [201,] "Chevrolet" "Adidas" "Yamaha"   "Sabritas" "DHL"     
## [202,] "Chevrolet" "Adidas" "Yamaha"   "Sabritas" "Google"  
## [203,] "Chevrolet" "Adidas" "Yamaha"   "Sabritas" "Lego"    
## [204,] "Chevrolet" "Adidas" "Yamaha"   "Sabritas" "Oxxo"    
## [205,] "Chevrolet" "Adidas" "Yamaha"   "Sabritas" "Samsung" 
## [206,] "Chevrolet" "Adidas" "Yamaha"   "Samsung"  "DHL"     
## [207,] "Chevrolet" "Adidas" "Yamaha"   "Samsung"  "Google"  
## [208,] "Chevrolet" "Adidas" "Yamaha"   "Samsung"  "Lego"    
## [209,] "Chevrolet" "Adidas" "Yamaha"   "Samsung"  "Oxxo"    
## [210,] "Chevrolet" "Adidas" "Yamaha"   "Samsung"  "Sabritas"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " aparece de manera contigua y en este orden los equipos de Chevrolet y Adidas en cualquier columna , de un total de ", nrow(Pn.empresas), " representan ", round(frecuencia / nrow(Pn.empresas) * 100, 2), "%")
## [1] "Existen  210  aparece de manera contigua y en este orden los equipos de Chevrolet y Adidas en cualquier columna , de un total de  15120  representan  1.39 %"

¿En cuántas ocasiones aparece de manera contigua y en este orden las empresas de Adidas y Oxxo en cualquier columna uno y dos, dos y tres, tres y cuatro o cuatro y cinco?

filtro <- subset(Pn.empresas, (Pn.empresas[,1] == "Adidas" & Pn.empresas[,2] == "Oxxo") 
                 | (Pn.empresas[,2] == "Adidas" & Pn.empresas[,3] == "Oxxo") 
                 | 
                   (Pn.empresas[,3] == "Adidas" & Pn.empresas[,4] == "Oxxo") 
                 | (Pn.empresas[,4] == "Adidas" & Pn.empresas[,5] == "Oxxo"))
filtro
##        [,1]        [,2]        [,3]        [,4]        [,5]       
##   [1,] "Adidas"    "Oxxo"      "Chevrolet" "DHL"       "Google"   
##   [2,] "Adidas"    "Oxxo"      "Chevrolet" "DHL"       "Lego"     
##   [3,] "Adidas"    "Oxxo"      "Chevrolet" "DHL"       "Sabritas" 
##   [4,] "Adidas"    "Oxxo"      "Chevrolet" "DHL"       "Samsung"  
##   [5,] "Adidas"    "Oxxo"      "Chevrolet" "DHL"       "Yamaha"   
##   [6,] "Adidas"    "Oxxo"      "Chevrolet" "Google"    "DHL"      
##   [7,] "Adidas"    "Oxxo"      "Chevrolet" "Google"    "Lego"     
##   [8,] "Adidas"    "Oxxo"      "Chevrolet" "Google"    "Sabritas" 
##   [9,] "Adidas"    "Oxxo"      "Chevrolet" "Google"    "Samsung"  
##  [10,] "Adidas"    "Oxxo"      "Chevrolet" "Google"    "Yamaha"   
##  [11,] "Adidas"    "Oxxo"      "Chevrolet" "Lego"      "DHL"      
##  [12,] "Adidas"    "Oxxo"      "Chevrolet" "Lego"      "Google"   
##  [13,] "Adidas"    "Oxxo"      "Chevrolet" "Lego"      "Sabritas" 
##  [14,] "Adidas"    "Oxxo"      "Chevrolet" "Lego"      "Samsung"  
##  [15,] "Adidas"    "Oxxo"      "Chevrolet" "Lego"      "Yamaha"   
##  [16,] "Adidas"    "Oxxo"      "Chevrolet" "Sabritas"  "DHL"      
##  [17,] "Adidas"    "Oxxo"      "Chevrolet" "Sabritas"  "Google"   
##  [18,] "Adidas"    "Oxxo"      "Chevrolet" "Sabritas"  "Lego"     
##  [19,] "Adidas"    "Oxxo"      "Chevrolet" "Sabritas"  "Samsung"  
##  [20,] "Adidas"    "Oxxo"      "Chevrolet" "Sabritas"  "Yamaha"   
##  [21,] "Adidas"    "Oxxo"      "Chevrolet" "Samsung"   "DHL"      
##  [22,] "Adidas"    "Oxxo"      "Chevrolet" "Samsung"   "Google"   
##  [23,] "Adidas"    "Oxxo"      "Chevrolet" "Samsung"   "Lego"     
##  [24,] "Adidas"    "Oxxo"      "Chevrolet" "Samsung"   "Sabritas" 
##  [25,] "Adidas"    "Oxxo"      "Chevrolet" "Samsung"   "Yamaha"   
##  [26,] "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"    "DHL"      
##  [27,] "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"    "Google"   
##  [28,] "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"    "Lego"     
##  [29,] "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"    "Sabritas" 
##  [30,] "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"    "Samsung"  
##  [31,] "Adidas"    "Oxxo"      "DHL"       "Chevrolet" "Google"   
##  [32,] "Adidas"    "Oxxo"      "DHL"       "Chevrolet" "Lego"     
##  [33,] "Adidas"    "Oxxo"      "DHL"       "Chevrolet" "Sabritas" 
##  [34,] "Adidas"    "Oxxo"      "DHL"       "Chevrolet" "Samsung"  
##  [35,] "Adidas"    "Oxxo"      "DHL"       "Chevrolet" "Yamaha"   
##  [36,] "Adidas"    "Oxxo"      "DHL"       "Google"    "Chevrolet"
##  [37,] "Adidas"    "Oxxo"      "DHL"       "Google"    "Lego"     
##  [38,] "Adidas"    "Oxxo"      "DHL"       "Google"    "Sabritas" 
##  [39,] "Adidas"    "Oxxo"      "DHL"       "Google"    "Samsung"  
##  [40,] "Adidas"    "Oxxo"      "DHL"       "Google"    "Yamaha"   
##  [41,] "Adidas"    "Oxxo"      "DHL"       "Lego"      "Chevrolet"
##  [42,] "Adidas"    "Oxxo"      "DHL"       "Lego"      "Google"   
##  [43,] "Adidas"    "Oxxo"      "DHL"       "Lego"      "Sabritas" 
##  [44,] "Adidas"    "Oxxo"      "DHL"       "Lego"      "Samsung"  
##  [45,] "Adidas"    "Oxxo"      "DHL"       "Lego"      "Yamaha"   
##  [46,] "Adidas"    "Oxxo"      "DHL"       "Sabritas"  "Chevrolet"
##  [47,] "Adidas"    "Oxxo"      "DHL"       "Sabritas"  "Google"   
##  [48,] "Adidas"    "Oxxo"      "DHL"       "Sabritas"  "Lego"     
##  [49,] "Adidas"    "Oxxo"      "DHL"       "Sabritas"  "Samsung"  
##  [50,] "Adidas"    "Oxxo"      "DHL"       "Sabritas"  "Yamaha"   
##  [51,] "Adidas"    "Oxxo"      "DHL"       "Samsung"   "Chevrolet"
##  [52,] "Adidas"    "Oxxo"      "DHL"       "Samsung"   "Google"   
##  [53,] "Adidas"    "Oxxo"      "DHL"       "Samsung"   "Lego"     
##  [54,] "Adidas"    "Oxxo"      "DHL"       "Samsung"   "Sabritas" 
##  [55,] "Adidas"    "Oxxo"      "DHL"       "Samsung"   "Yamaha"   
##  [56,] "Adidas"    "Oxxo"      "DHL"       "Yamaha"    "Chevrolet"
##  [57,] "Adidas"    "Oxxo"      "DHL"       "Yamaha"    "Google"   
##  [58,] "Adidas"    "Oxxo"      "DHL"       "Yamaha"    "Lego"     
##  [59,] "Adidas"    "Oxxo"      "DHL"       "Yamaha"    "Sabritas" 
##  [60,] "Adidas"    "Oxxo"      "DHL"       "Yamaha"    "Samsung"  
##  [61,] "Adidas"    "Oxxo"      "Google"    "Chevrolet" "DHL"      
##  [62,] "Adidas"    "Oxxo"      "Google"    "Chevrolet" "Lego"     
##  [63,] "Adidas"    "Oxxo"      "Google"    "Chevrolet" "Sabritas" 
##  [64,] "Adidas"    "Oxxo"      "Google"    "Chevrolet" "Samsung"  
##  [65,] "Adidas"    "Oxxo"      "Google"    "Chevrolet" "Yamaha"   
##  [66,] "Adidas"    "Oxxo"      "Google"    "DHL"       "Chevrolet"
##  [67,] "Adidas"    "Oxxo"      "Google"    "DHL"       "Lego"     
##  [68,] "Adidas"    "Oxxo"      "Google"    "DHL"       "Sabritas" 
##  [69,] "Adidas"    "Oxxo"      "Google"    "DHL"       "Samsung"  
##  [70,] "Adidas"    "Oxxo"      "Google"    "DHL"       "Yamaha"   
##  [71,] "Adidas"    "Oxxo"      "Google"    "Lego"      "Chevrolet"
##  [72,] "Adidas"    "Oxxo"      "Google"    "Lego"      "DHL"      
##  [73,] "Adidas"    "Oxxo"      "Google"    "Lego"      "Sabritas" 
##  [74,] "Adidas"    "Oxxo"      "Google"    "Lego"      "Samsung"  
##  [75,] "Adidas"    "Oxxo"      "Google"    "Lego"      "Yamaha"   
##  [76,] "Adidas"    "Oxxo"      "Google"    "Sabritas"  "Chevrolet"
##  [77,] "Adidas"    "Oxxo"      "Google"    "Sabritas"  "DHL"      
##  [78,] "Adidas"    "Oxxo"      "Google"    "Sabritas"  "Lego"     
##  [79,] "Adidas"    "Oxxo"      "Google"    "Sabritas"  "Samsung"  
##  [80,] "Adidas"    "Oxxo"      "Google"    "Sabritas"  "Yamaha"   
##  [81,] "Adidas"    "Oxxo"      "Google"    "Samsung"   "Chevrolet"
##  [82,] "Adidas"    "Oxxo"      "Google"    "Samsung"   "DHL"      
##  [83,] "Adidas"    "Oxxo"      "Google"    "Samsung"   "Lego"     
##  [84,] "Adidas"    "Oxxo"      "Google"    "Samsung"   "Sabritas" 
##  [85,] "Adidas"    "Oxxo"      "Google"    "Samsung"   "Yamaha"   
##  [86,] "Adidas"    "Oxxo"      "Google"    "Yamaha"    "Chevrolet"
##  [87,] "Adidas"    "Oxxo"      "Google"    "Yamaha"    "DHL"      
##  [88,] "Adidas"    "Oxxo"      "Google"    "Yamaha"    "Lego"     
##  [89,] "Adidas"    "Oxxo"      "Google"    "Yamaha"    "Sabritas" 
##  [90,] "Adidas"    "Oxxo"      "Google"    "Yamaha"    "Samsung"  
##  [91,] "Adidas"    "Oxxo"      "Lego"      "Chevrolet" "DHL"      
##  [92,] "Adidas"    "Oxxo"      "Lego"      "Chevrolet" "Google"   
##  [93,] "Adidas"    "Oxxo"      "Lego"      "Chevrolet" "Sabritas" 
##  [94,] "Adidas"    "Oxxo"      "Lego"      "Chevrolet" "Samsung"  
##  [95,] "Adidas"    "Oxxo"      "Lego"      "Chevrolet" "Yamaha"   
##  [96,] "Adidas"    "Oxxo"      "Lego"      "DHL"       "Chevrolet"
##  [97,] "Adidas"    "Oxxo"      "Lego"      "DHL"       "Google"   
##  [98,] "Adidas"    "Oxxo"      "Lego"      "DHL"       "Sabritas" 
##  [99,] "Adidas"    "Oxxo"      "Lego"      "DHL"       "Samsung"  
## [100,] "Adidas"    "Oxxo"      "Lego"      "DHL"       "Yamaha"   
## [101,] "Adidas"    "Oxxo"      "Lego"      "Google"    "Chevrolet"
## [102,] "Adidas"    "Oxxo"      "Lego"      "Google"    "DHL"      
## [103,] "Adidas"    "Oxxo"      "Lego"      "Google"    "Sabritas" 
## [104,] "Adidas"    "Oxxo"      "Lego"      "Google"    "Samsung"  
## [105,] "Adidas"    "Oxxo"      "Lego"      "Google"    "Yamaha"   
## [106,] "Adidas"    "Oxxo"      "Lego"      "Sabritas"  "Chevrolet"
## [107,] "Adidas"    "Oxxo"      "Lego"      "Sabritas"  "DHL"      
## [108,] "Adidas"    "Oxxo"      "Lego"      "Sabritas"  "Google"   
## [109,] "Adidas"    "Oxxo"      "Lego"      "Sabritas"  "Samsung"  
## [110,] "Adidas"    "Oxxo"      "Lego"      "Sabritas"  "Yamaha"   
## [111,] "Adidas"    "Oxxo"      "Lego"      "Samsung"   "Chevrolet"
## [112,] "Adidas"    "Oxxo"      "Lego"      "Samsung"   "DHL"      
## [113,] "Adidas"    "Oxxo"      "Lego"      "Samsung"   "Google"   
## [114,] "Adidas"    "Oxxo"      "Lego"      "Samsung"   "Sabritas" 
## [115,] "Adidas"    "Oxxo"      "Lego"      "Samsung"   "Yamaha"   
## [116,] "Adidas"    "Oxxo"      "Lego"      "Yamaha"    "Chevrolet"
## [117,] "Adidas"    "Oxxo"      "Lego"      "Yamaha"    "DHL"      
## [118,] "Adidas"    "Oxxo"      "Lego"      "Yamaha"    "Google"   
## [119,] "Adidas"    "Oxxo"      "Lego"      "Yamaha"    "Sabritas" 
## [120,] "Adidas"    "Oxxo"      "Lego"      "Yamaha"    "Samsung"  
## [121,] "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet" "DHL"      
## [122,] "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet" "Google"   
## [123,] "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet" "Lego"     
## [124,] "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet" "Samsung"  
## [125,] "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet" "Yamaha"   
## [126,] "Adidas"    "Oxxo"      "Sabritas"  "DHL"       "Chevrolet"
## [127,] "Adidas"    "Oxxo"      "Sabritas"  "DHL"       "Google"   
## [128,] "Adidas"    "Oxxo"      "Sabritas"  "DHL"       "Lego"     
## [129,] "Adidas"    "Oxxo"      "Sabritas"  "DHL"       "Samsung"  
## [130,] "Adidas"    "Oxxo"      "Sabritas"  "DHL"       "Yamaha"   
## [131,] "Adidas"    "Oxxo"      "Sabritas"  "Google"    "Chevrolet"
## [132,] "Adidas"    "Oxxo"      "Sabritas"  "Google"    "DHL"      
## [133,] "Adidas"    "Oxxo"      "Sabritas"  "Google"    "Lego"     
## [134,] "Adidas"    "Oxxo"      "Sabritas"  "Google"    "Samsung"  
## [135,] "Adidas"    "Oxxo"      "Sabritas"  "Google"    "Yamaha"   
## [136,] "Adidas"    "Oxxo"      "Sabritas"  "Lego"      "Chevrolet"
## [137,] "Adidas"    "Oxxo"      "Sabritas"  "Lego"      "DHL"      
## [138,] "Adidas"    "Oxxo"      "Sabritas"  "Lego"      "Google"   
## [139,] "Adidas"    "Oxxo"      "Sabritas"  "Lego"      "Samsung"  
## [140,] "Adidas"    "Oxxo"      "Sabritas"  "Lego"      "Yamaha"   
## [141,] "Adidas"    "Oxxo"      "Sabritas"  "Samsung"   "Chevrolet"
## [142,] "Adidas"    "Oxxo"      "Sabritas"  "Samsung"   "DHL"      
## [143,] "Adidas"    "Oxxo"      "Sabritas"  "Samsung"   "Google"   
## [144,] "Adidas"    "Oxxo"      "Sabritas"  "Samsung"   "Lego"     
## [145,] "Adidas"    "Oxxo"      "Sabritas"  "Samsung"   "Yamaha"   
## [146,] "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"    "Chevrolet"
## [147,] "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"    "DHL"      
## [148,] "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"    "Google"   
## [149,] "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"    "Lego"     
## [150,] "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"    "Samsung"  
## [151,] "Adidas"    "Oxxo"      "Samsung"   "Chevrolet" "DHL"      
## [152,] "Adidas"    "Oxxo"      "Samsung"   "Chevrolet" "Google"   
## [153,] "Adidas"    "Oxxo"      "Samsung"   "Chevrolet" "Lego"     
## [154,] "Adidas"    "Oxxo"      "Samsung"   "Chevrolet" "Sabritas" 
## [155,] "Adidas"    "Oxxo"      "Samsung"   "Chevrolet" "Yamaha"   
## [156,] "Adidas"    "Oxxo"      "Samsung"   "DHL"       "Chevrolet"
## [157,] "Adidas"    "Oxxo"      "Samsung"   "DHL"       "Google"   
## [158,] "Adidas"    "Oxxo"      "Samsung"   "DHL"       "Lego"     
## [159,] "Adidas"    "Oxxo"      "Samsung"   "DHL"       "Sabritas" 
## [160,] "Adidas"    "Oxxo"      "Samsung"   "DHL"       "Yamaha"   
## [161,] "Adidas"    "Oxxo"      "Samsung"   "Google"    "Chevrolet"
## [162,] "Adidas"    "Oxxo"      "Samsung"   "Google"    "DHL"      
## [163,] "Adidas"    "Oxxo"      "Samsung"   "Google"    "Lego"     
## [164,] "Adidas"    "Oxxo"      "Samsung"   "Google"    "Sabritas" 
## [165,] "Adidas"    "Oxxo"      "Samsung"   "Google"    "Yamaha"   
## [166,] "Adidas"    "Oxxo"      "Samsung"   "Lego"      "Chevrolet"
## [167,] "Adidas"    "Oxxo"      "Samsung"   "Lego"      "DHL"      
## [168,] "Adidas"    "Oxxo"      "Samsung"   "Lego"      "Google"   
## [169,] "Adidas"    "Oxxo"      "Samsung"   "Lego"      "Sabritas" 
## [170,] "Adidas"    "Oxxo"      "Samsung"   "Lego"      "Yamaha"   
## [171,] "Adidas"    "Oxxo"      "Samsung"   "Sabritas"  "Chevrolet"
## [172,] "Adidas"    "Oxxo"      "Samsung"   "Sabritas"  "DHL"      
## [173,] "Adidas"    "Oxxo"      "Samsung"   "Sabritas"  "Google"   
## [174,] "Adidas"    "Oxxo"      "Samsung"   "Sabritas"  "Lego"     
## [175,] "Adidas"    "Oxxo"      "Samsung"   "Sabritas"  "Yamaha"   
## [176,] "Adidas"    "Oxxo"      "Samsung"   "Yamaha"    "Chevrolet"
## [177,] "Adidas"    "Oxxo"      "Samsung"   "Yamaha"    "DHL"      
## [178,] "Adidas"    "Oxxo"      "Samsung"   "Yamaha"    "Google"   
## [179,] "Adidas"    "Oxxo"      "Samsung"   "Yamaha"    "Lego"     
## [180,] "Adidas"    "Oxxo"      "Samsung"   "Yamaha"    "Sabritas" 
## [181,] "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet" "DHL"      
## [182,] "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet" "Google"   
## [183,] "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet" "Lego"     
## [184,] "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet" "Sabritas" 
## [185,] "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet" "Samsung"  
## [186,] "Adidas"    "Oxxo"      "Yamaha"    "DHL"       "Chevrolet"
## [187,] "Adidas"    "Oxxo"      "Yamaha"    "DHL"       "Google"   
## [188,] "Adidas"    "Oxxo"      "Yamaha"    "DHL"       "Lego"     
## [189,] "Adidas"    "Oxxo"      "Yamaha"    "DHL"       "Sabritas" 
## [190,] "Adidas"    "Oxxo"      "Yamaha"    "DHL"       "Samsung"  
## [191,] "Adidas"    "Oxxo"      "Yamaha"    "Google"    "Chevrolet"
## [192,] "Adidas"    "Oxxo"      "Yamaha"    "Google"    "DHL"      
## [193,] "Adidas"    "Oxxo"      "Yamaha"    "Google"    "Lego"     
## [194,] "Adidas"    "Oxxo"      "Yamaha"    "Google"    "Sabritas" 
## [195,] "Adidas"    "Oxxo"      "Yamaha"    "Google"    "Samsung"  
## [196,] "Adidas"    "Oxxo"      "Yamaha"    "Lego"      "Chevrolet"
## [197,] "Adidas"    "Oxxo"      "Yamaha"    "Lego"      "DHL"      
## [198,] "Adidas"    "Oxxo"      "Yamaha"    "Lego"      "Google"   
## [199,] "Adidas"    "Oxxo"      "Yamaha"    "Lego"      "Sabritas" 
## [200,] "Adidas"    "Oxxo"      "Yamaha"    "Lego"      "Samsung"  
## [201,] "Adidas"    "Oxxo"      "Yamaha"    "Sabritas"  "Chevrolet"
## [202,] "Adidas"    "Oxxo"      "Yamaha"    "Sabritas"  "DHL"      
## [203,] "Adidas"    "Oxxo"      "Yamaha"    "Sabritas"  "Google"   
## [204,] "Adidas"    "Oxxo"      "Yamaha"    "Sabritas"  "Lego"     
## [205,] "Adidas"    "Oxxo"      "Yamaha"    "Sabritas"  "Samsung"  
## [206,] "Adidas"    "Oxxo"      "Yamaha"    "Samsung"   "Chevrolet"
## [207,] "Adidas"    "Oxxo"      "Yamaha"    "Samsung"   "DHL"      
## [208,] "Adidas"    "Oxxo"      "Yamaha"    "Samsung"   "Google"   
## [209,] "Adidas"    "Oxxo"      "Yamaha"    "Samsung"   "Lego"     
## [210,] "Adidas"    "Oxxo"      "Yamaha"    "Samsung"   "Sabritas" 
## [211,] "Chevrolet" "Adidas"    "Oxxo"      "DHL"       "Google"   
## [212,] "Chevrolet" "Adidas"    "Oxxo"      "DHL"       "Lego"     
## [213,] "Chevrolet" "Adidas"    "Oxxo"      "DHL"       "Sabritas" 
## [214,] "Chevrolet" "Adidas"    "Oxxo"      "DHL"       "Samsung"  
## [215,] "Chevrolet" "Adidas"    "Oxxo"      "DHL"       "Yamaha"   
## [216,] "Chevrolet" "Adidas"    "Oxxo"      "Google"    "DHL"      
## [217,] "Chevrolet" "Adidas"    "Oxxo"      "Google"    "Lego"     
## [218,] "Chevrolet" "Adidas"    "Oxxo"      "Google"    "Sabritas" 
## [219,] "Chevrolet" "Adidas"    "Oxxo"      "Google"    "Samsung"  
## [220,] "Chevrolet" "Adidas"    "Oxxo"      "Google"    "Yamaha"   
## [221,] "Chevrolet" "Adidas"    "Oxxo"      "Lego"      "DHL"      
## [222,] "Chevrolet" "Adidas"    "Oxxo"      "Lego"      "Google"   
## [223,] "Chevrolet" "Adidas"    "Oxxo"      "Lego"      "Sabritas" 
## [224,] "Chevrolet" "Adidas"    "Oxxo"      "Lego"      "Samsung"  
## [225,] "Chevrolet" "Adidas"    "Oxxo"      "Lego"      "Yamaha"   
## [226,] "Chevrolet" "Adidas"    "Oxxo"      "Sabritas"  "DHL"      
## [227,] "Chevrolet" "Adidas"    "Oxxo"      "Sabritas"  "Google"   
## [228,] "Chevrolet" "Adidas"    "Oxxo"      "Sabritas"  "Lego"     
## [229,] "Chevrolet" "Adidas"    "Oxxo"      "Sabritas"  "Samsung"  
## [230,] "Chevrolet" "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"   
## [231,] "Chevrolet" "Adidas"    "Oxxo"      "Samsung"   "DHL"      
## [232,] "Chevrolet" "Adidas"    "Oxxo"      "Samsung"   "Google"   
## [233,] "Chevrolet" "Adidas"    "Oxxo"      "Samsung"   "Lego"     
## [234,] "Chevrolet" "Adidas"    "Oxxo"      "Samsung"   "Sabritas" 
## [235,] "Chevrolet" "Adidas"    "Oxxo"      "Samsung"   "Yamaha"   
## [236,] "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"    "DHL"      
## [237,] "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"    "Google"   
## [238,] "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"    "Lego"     
## [239,] "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"    "Sabritas" 
## [240,] "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"    "Samsung"  
## [241,] "Chevrolet" "DHL"       "Adidas"    "Oxxo"      "Google"   
## [242,] "Chevrolet" "DHL"       "Adidas"    "Oxxo"      "Lego"     
## [243,] "Chevrolet" "DHL"       "Adidas"    "Oxxo"      "Sabritas" 
## [244,] "Chevrolet" "DHL"       "Adidas"    "Oxxo"      "Samsung"  
## [245,] "Chevrolet" "DHL"       "Adidas"    "Oxxo"      "Yamaha"   
## [246,] "Chevrolet" "DHL"       "Google"    "Adidas"    "Oxxo"     
## [247,] "Chevrolet" "DHL"       "Lego"      "Adidas"    "Oxxo"     
## [248,] "Chevrolet" "DHL"       "Sabritas"  "Adidas"    "Oxxo"     
## [249,] "Chevrolet" "DHL"       "Samsung"   "Adidas"    "Oxxo"     
## [250,] "Chevrolet" "DHL"       "Yamaha"    "Adidas"    "Oxxo"     
## [251,] "Chevrolet" "Google"    "Adidas"    "Oxxo"      "DHL"      
## [252,] "Chevrolet" "Google"    "Adidas"    "Oxxo"      "Lego"     
## [253,] "Chevrolet" "Google"    "Adidas"    "Oxxo"      "Sabritas" 
## [254,] "Chevrolet" "Google"    "Adidas"    "Oxxo"      "Samsung"  
## [255,] "Chevrolet" "Google"    "Adidas"    "Oxxo"      "Yamaha"   
## [256,] "Chevrolet" "Google"    "DHL"       "Adidas"    "Oxxo"     
## [257,] "Chevrolet" "Google"    "Lego"      "Adidas"    "Oxxo"     
## [258,] "Chevrolet" "Google"    "Sabritas"  "Adidas"    "Oxxo"     
## [259,] "Chevrolet" "Google"    "Samsung"   "Adidas"    "Oxxo"     
## [260,] "Chevrolet" "Google"    "Yamaha"    "Adidas"    "Oxxo"     
## [261,] "Chevrolet" "Lego"      "Adidas"    "Oxxo"      "DHL"      
## [262,] "Chevrolet" "Lego"      "Adidas"    "Oxxo"      "Google"   
## [263,] "Chevrolet" "Lego"      "Adidas"    "Oxxo"      "Sabritas" 
## [264,] "Chevrolet" "Lego"      "Adidas"    "Oxxo"      "Samsung"  
## [265,] "Chevrolet" "Lego"      "Adidas"    "Oxxo"      "Yamaha"   
## [266,] "Chevrolet" "Lego"      "DHL"       "Adidas"    "Oxxo"     
## [267,] "Chevrolet" "Lego"      "Google"    "Adidas"    "Oxxo"     
## [268,] "Chevrolet" "Lego"      "Sabritas"  "Adidas"    "Oxxo"     
## [269,] "Chevrolet" "Lego"      "Samsung"   "Adidas"    "Oxxo"     
## [270,] "Chevrolet" "Lego"      "Yamaha"    "Adidas"    "Oxxo"     
## [271,] "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"      "DHL"      
## [272,] "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"      "Google"   
## [273,] "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"      "Lego"     
## [274,] "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"      "Samsung"  
## [275,] "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"   
## [276,] "Chevrolet" "Sabritas"  "DHL"       "Adidas"    "Oxxo"     
## [277,] "Chevrolet" "Sabritas"  "Google"    "Adidas"    "Oxxo"     
## [278,] "Chevrolet" "Sabritas"  "Lego"      "Adidas"    "Oxxo"     
## [279,] "Chevrolet" "Sabritas"  "Samsung"   "Adidas"    "Oxxo"     
## [280,] "Chevrolet" "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"     
## [281,] "Chevrolet" "Samsung"   "Adidas"    "Oxxo"      "DHL"      
## [282,] "Chevrolet" "Samsung"   "Adidas"    "Oxxo"      "Google"   
## [283,] "Chevrolet" "Samsung"   "Adidas"    "Oxxo"      "Lego"     
## [284,] "Chevrolet" "Samsung"   "Adidas"    "Oxxo"      "Sabritas" 
## [285,] "Chevrolet" "Samsung"   "Adidas"    "Oxxo"      "Yamaha"   
## [286,] "Chevrolet" "Samsung"   "DHL"       "Adidas"    "Oxxo"     
## [287,] "Chevrolet" "Samsung"   "Google"    "Adidas"    "Oxxo"     
## [288,] "Chevrolet" "Samsung"   "Lego"      "Adidas"    "Oxxo"     
## [289,] "Chevrolet" "Samsung"   "Sabritas"  "Adidas"    "Oxxo"     
## [290,] "Chevrolet" "Samsung"   "Yamaha"    "Adidas"    "Oxxo"     
## [291,] "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"      "DHL"      
## [292,] "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"      "Google"   
## [293,] "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"      "Lego"     
## [294,] "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"      "Sabritas" 
## [295,] "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"      "Samsung"  
## [296,] "Chevrolet" "Yamaha"    "DHL"       "Adidas"    "Oxxo"     
## [297,] "Chevrolet" "Yamaha"    "Google"    "Adidas"    "Oxxo"     
## [298,] "Chevrolet" "Yamaha"    "Lego"      "Adidas"    "Oxxo"     
## [299,] "Chevrolet" "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"     
## [300,] "Chevrolet" "Yamaha"    "Samsung"   "Adidas"    "Oxxo"     
## [301,] "DHL"       "Adidas"    "Oxxo"      "Chevrolet" "Google"   
## [302,] "DHL"       "Adidas"    "Oxxo"      "Chevrolet" "Lego"     
## [303,] "DHL"       "Adidas"    "Oxxo"      "Chevrolet" "Sabritas" 
## [304,] "DHL"       "Adidas"    "Oxxo"      "Chevrolet" "Samsung"  
## [305,] "DHL"       "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"   
## [306,] "DHL"       "Adidas"    "Oxxo"      "Google"    "Chevrolet"
## [307,] "DHL"       "Adidas"    "Oxxo"      "Google"    "Lego"     
## [308,] "DHL"       "Adidas"    "Oxxo"      "Google"    "Sabritas" 
## [309,] "DHL"       "Adidas"    "Oxxo"      "Google"    "Samsung"  
## [310,] "DHL"       "Adidas"    "Oxxo"      "Google"    "Yamaha"   
## [311,] "DHL"       "Adidas"    "Oxxo"      "Lego"      "Chevrolet"
## [312,] "DHL"       "Adidas"    "Oxxo"      "Lego"      "Google"   
## [313,] "DHL"       "Adidas"    "Oxxo"      "Lego"      "Sabritas" 
## [314,] "DHL"       "Adidas"    "Oxxo"      "Lego"      "Samsung"  
## [315,] "DHL"       "Adidas"    "Oxxo"      "Lego"      "Yamaha"   
## [316,] "DHL"       "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet"
## [317,] "DHL"       "Adidas"    "Oxxo"      "Sabritas"  "Google"   
## [318,] "DHL"       "Adidas"    "Oxxo"      "Sabritas"  "Lego"     
## [319,] "DHL"       "Adidas"    "Oxxo"      "Sabritas"  "Samsung"  
## [320,] "DHL"       "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"   
## [321,] "DHL"       "Adidas"    "Oxxo"      "Samsung"   "Chevrolet"
## [322,] "DHL"       "Adidas"    "Oxxo"      "Samsung"   "Google"   
## [323,] "DHL"       "Adidas"    "Oxxo"      "Samsung"   "Lego"     
## [324,] "DHL"       "Adidas"    "Oxxo"      "Samsung"   "Sabritas" 
## [325,] "DHL"       "Adidas"    "Oxxo"      "Samsung"   "Yamaha"   
## [326,] "DHL"       "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet"
## [327,] "DHL"       "Adidas"    "Oxxo"      "Yamaha"    "Google"   
## [328,] "DHL"       "Adidas"    "Oxxo"      "Yamaha"    "Lego"     
## [329,] "DHL"       "Adidas"    "Oxxo"      "Yamaha"    "Sabritas" 
## [330,] "DHL"       "Adidas"    "Oxxo"      "Yamaha"    "Samsung"  
## [331,] "DHL"       "Chevrolet" "Adidas"    "Oxxo"      "Google"   
## [332,] "DHL"       "Chevrolet" "Adidas"    "Oxxo"      "Lego"     
## [333,] "DHL"       "Chevrolet" "Adidas"    "Oxxo"      "Sabritas" 
## [334,] "DHL"       "Chevrolet" "Adidas"    "Oxxo"      "Samsung"  
## [335,] "DHL"       "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"   
## [336,] "DHL"       "Chevrolet" "Google"    "Adidas"    "Oxxo"     
## [337,] "DHL"       "Chevrolet" "Lego"      "Adidas"    "Oxxo"     
## [338,] "DHL"       "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"     
## [339,] "DHL"       "Chevrolet" "Samsung"   "Adidas"    "Oxxo"     
## [340,] "DHL"       "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"     
## [341,] "DHL"       "Google"    "Adidas"    "Oxxo"      "Chevrolet"
## [342,] "DHL"       "Google"    "Adidas"    "Oxxo"      "Lego"     
## [343,] "DHL"       "Google"    "Adidas"    "Oxxo"      "Sabritas" 
## [344,] "DHL"       "Google"    "Adidas"    "Oxxo"      "Samsung"  
## [345,] "DHL"       "Google"    "Adidas"    "Oxxo"      "Yamaha"   
## [346,] "DHL"       "Google"    "Chevrolet" "Adidas"    "Oxxo"     
## [347,] "DHL"       "Google"    "Lego"      "Adidas"    "Oxxo"     
## [348,] "DHL"       "Google"    "Sabritas"  "Adidas"    "Oxxo"     
## [349,] "DHL"       "Google"    "Samsung"   "Adidas"    "Oxxo"     
## [350,] "DHL"       "Google"    "Yamaha"    "Adidas"    "Oxxo"     
## [351,] "DHL"       "Lego"      "Adidas"    "Oxxo"      "Chevrolet"
## [352,] "DHL"       "Lego"      "Adidas"    "Oxxo"      "Google"   
## [353,] "DHL"       "Lego"      "Adidas"    "Oxxo"      "Sabritas" 
## [354,] "DHL"       "Lego"      "Adidas"    "Oxxo"      "Samsung"  
## [355,] "DHL"       "Lego"      "Adidas"    "Oxxo"      "Yamaha"   
## [356,] "DHL"       "Lego"      "Chevrolet" "Adidas"    "Oxxo"     
## [357,] "DHL"       "Lego"      "Google"    "Adidas"    "Oxxo"     
## [358,] "DHL"       "Lego"      "Sabritas"  "Adidas"    "Oxxo"     
## [359,] "DHL"       "Lego"      "Samsung"   "Adidas"    "Oxxo"     
## [360,] "DHL"       "Lego"      "Yamaha"    "Adidas"    "Oxxo"     
## [361,] "DHL"       "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet"
## [362,] "DHL"       "Sabritas"  "Adidas"    "Oxxo"      "Google"   
## [363,] "DHL"       "Sabritas"  "Adidas"    "Oxxo"      "Lego"     
## [364,] "DHL"       "Sabritas"  "Adidas"    "Oxxo"      "Samsung"  
## [365,] "DHL"       "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"   
## [366,] "DHL"       "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"     
## [367,] "DHL"       "Sabritas"  "Google"    "Adidas"    "Oxxo"     
## [368,] "DHL"       "Sabritas"  "Lego"      "Adidas"    "Oxxo"     
## [369,] "DHL"       "Sabritas"  "Samsung"   "Adidas"    "Oxxo"     
## [370,] "DHL"       "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"     
## [371,] "DHL"       "Samsung"   "Adidas"    "Oxxo"      "Chevrolet"
## [372,] "DHL"       "Samsung"   "Adidas"    "Oxxo"      "Google"   
## [373,] "DHL"       "Samsung"   "Adidas"    "Oxxo"      "Lego"     
## [374,] "DHL"       "Samsung"   "Adidas"    "Oxxo"      "Sabritas" 
## [375,] "DHL"       "Samsung"   "Adidas"    "Oxxo"      "Yamaha"   
## [376,] "DHL"       "Samsung"   "Chevrolet" "Adidas"    "Oxxo"     
## [377,] "DHL"       "Samsung"   "Google"    "Adidas"    "Oxxo"     
## [378,] "DHL"       "Samsung"   "Lego"      "Adidas"    "Oxxo"     
## [379,] "DHL"       "Samsung"   "Sabritas"  "Adidas"    "Oxxo"     
## [380,] "DHL"       "Samsung"   "Yamaha"    "Adidas"    "Oxxo"     
## [381,] "DHL"       "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet"
## [382,] "DHL"       "Yamaha"    "Adidas"    "Oxxo"      "Google"   
## [383,] "DHL"       "Yamaha"    "Adidas"    "Oxxo"      "Lego"     
## [384,] "DHL"       "Yamaha"    "Adidas"    "Oxxo"      "Sabritas" 
## [385,] "DHL"       "Yamaha"    "Adidas"    "Oxxo"      "Samsung"  
## [386,] "DHL"       "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"     
## [387,] "DHL"       "Yamaha"    "Google"    "Adidas"    "Oxxo"     
## [388,] "DHL"       "Yamaha"    "Lego"      "Adidas"    "Oxxo"     
## [389,] "DHL"       "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"     
## [390,] "DHL"       "Yamaha"    "Samsung"   "Adidas"    "Oxxo"     
## [391,] "Google"    "Adidas"    "Oxxo"      "Chevrolet" "DHL"      
## [392,] "Google"    "Adidas"    "Oxxo"      "Chevrolet" "Lego"     
## [393,] "Google"    "Adidas"    "Oxxo"      "Chevrolet" "Sabritas" 
## [394,] "Google"    "Adidas"    "Oxxo"      "Chevrolet" "Samsung"  
## [395,] "Google"    "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"   
## [396,] "Google"    "Adidas"    "Oxxo"      "DHL"       "Chevrolet"
## [397,] "Google"    "Adidas"    "Oxxo"      "DHL"       "Lego"     
## [398,] "Google"    "Adidas"    "Oxxo"      "DHL"       "Sabritas" 
## [399,] "Google"    "Adidas"    "Oxxo"      "DHL"       "Samsung"  
## [400,] "Google"    "Adidas"    "Oxxo"      "DHL"       "Yamaha"   
## [401,] "Google"    "Adidas"    "Oxxo"      "Lego"      "Chevrolet"
## [402,] "Google"    "Adidas"    "Oxxo"      "Lego"      "DHL"      
## [403,] "Google"    "Adidas"    "Oxxo"      "Lego"      "Sabritas" 
## [404,] "Google"    "Adidas"    "Oxxo"      "Lego"      "Samsung"  
## [405,] "Google"    "Adidas"    "Oxxo"      "Lego"      "Yamaha"   
## [406,] "Google"    "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet"
## [407,] "Google"    "Adidas"    "Oxxo"      "Sabritas"  "DHL"      
## [408,] "Google"    "Adidas"    "Oxxo"      "Sabritas"  "Lego"     
## [409,] "Google"    "Adidas"    "Oxxo"      "Sabritas"  "Samsung"  
## [410,] "Google"    "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"   
## [411,] "Google"    "Adidas"    "Oxxo"      "Samsung"   "Chevrolet"
## [412,] "Google"    "Adidas"    "Oxxo"      "Samsung"   "DHL"      
## [413,] "Google"    "Adidas"    "Oxxo"      "Samsung"   "Lego"     
## [414,] "Google"    "Adidas"    "Oxxo"      "Samsung"   "Sabritas" 
## [415,] "Google"    "Adidas"    "Oxxo"      "Samsung"   "Yamaha"   
## [416,] "Google"    "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet"
## [417,] "Google"    "Adidas"    "Oxxo"      "Yamaha"    "DHL"      
## [418,] "Google"    "Adidas"    "Oxxo"      "Yamaha"    "Lego"     
## [419,] "Google"    "Adidas"    "Oxxo"      "Yamaha"    "Sabritas" 
## [420,] "Google"    "Adidas"    "Oxxo"      "Yamaha"    "Samsung"  
## [421,] "Google"    "Chevrolet" "Adidas"    "Oxxo"      "DHL"      
## [422,] "Google"    "Chevrolet" "Adidas"    "Oxxo"      "Lego"     
## [423,] "Google"    "Chevrolet" "Adidas"    "Oxxo"      "Sabritas" 
## [424,] "Google"    "Chevrolet" "Adidas"    "Oxxo"      "Samsung"  
## [425,] "Google"    "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"   
## [426,] "Google"    "Chevrolet" "DHL"       "Adidas"    "Oxxo"     
## [427,] "Google"    "Chevrolet" "Lego"      "Adidas"    "Oxxo"     
## [428,] "Google"    "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"     
## [429,] "Google"    "Chevrolet" "Samsung"   "Adidas"    "Oxxo"     
## [430,] "Google"    "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"     
## [431,] "Google"    "DHL"       "Adidas"    "Oxxo"      "Chevrolet"
## [432,] "Google"    "DHL"       "Adidas"    "Oxxo"      "Lego"     
## [433,] "Google"    "DHL"       "Adidas"    "Oxxo"      "Sabritas" 
## [434,] "Google"    "DHL"       "Adidas"    "Oxxo"      "Samsung"  
## [435,] "Google"    "DHL"       "Adidas"    "Oxxo"      "Yamaha"   
## [436,] "Google"    "DHL"       "Chevrolet" "Adidas"    "Oxxo"     
## [437,] "Google"    "DHL"       "Lego"      "Adidas"    "Oxxo"     
## [438,] "Google"    "DHL"       "Sabritas"  "Adidas"    "Oxxo"     
## [439,] "Google"    "DHL"       "Samsung"   "Adidas"    "Oxxo"     
## [440,] "Google"    "DHL"       "Yamaha"    "Adidas"    "Oxxo"     
## [441,] "Google"    "Lego"      "Adidas"    "Oxxo"      "Chevrolet"
## [442,] "Google"    "Lego"      "Adidas"    "Oxxo"      "DHL"      
## [443,] "Google"    "Lego"      "Adidas"    "Oxxo"      "Sabritas" 
## [444,] "Google"    "Lego"      "Adidas"    "Oxxo"      "Samsung"  
## [445,] "Google"    "Lego"      "Adidas"    "Oxxo"      "Yamaha"   
## [446,] "Google"    "Lego"      "Chevrolet" "Adidas"    "Oxxo"     
## [447,] "Google"    "Lego"      "DHL"       "Adidas"    "Oxxo"     
## [448,] "Google"    "Lego"      "Sabritas"  "Adidas"    "Oxxo"     
## [449,] "Google"    "Lego"      "Samsung"   "Adidas"    "Oxxo"     
## [450,] "Google"    "Lego"      "Yamaha"    "Adidas"    "Oxxo"     
## [451,] "Google"    "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet"
## [452,] "Google"    "Sabritas"  "Adidas"    "Oxxo"      "DHL"      
## [453,] "Google"    "Sabritas"  "Adidas"    "Oxxo"      "Lego"     
## [454,] "Google"    "Sabritas"  "Adidas"    "Oxxo"      "Samsung"  
## [455,] "Google"    "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"   
## [456,] "Google"    "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"     
## [457,] "Google"    "Sabritas"  "DHL"       "Adidas"    "Oxxo"     
## [458,] "Google"    "Sabritas"  "Lego"      "Adidas"    "Oxxo"     
## [459,] "Google"    "Sabritas"  "Samsung"   "Adidas"    "Oxxo"     
## [460,] "Google"    "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"     
## [461,] "Google"    "Samsung"   "Adidas"    "Oxxo"      "Chevrolet"
## [462,] "Google"    "Samsung"   "Adidas"    "Oxxo"      "DHL"      
## [463,] "Google"    "Samsung"   "Adidas"    "Oxxo"      "Lego"     
## [464,] "Google"    "Samsung"   "Adidas"    "Oxxo"      "Sabritas" 
## [465,] "Google"    "Samsung"   "Adidas"    "Oxxo"      "Yamaha"   
## [466,] "Google"    "Samsung"   "Chevrolet" "Adidas"    "Oxxo"     
## [467,] "Google"    "Samsung"   "DHL"       "Adidas"    "Oxxo"     
## [468,] "Google"    "Samsung"   "Lego"      "Adidas"    "Oxxo"     
## [469,] "Google"    "Samsung"   "Sabritas"  "Adidas"    "Oxxo"     
## [470,] "Google"    "Samsung"   "Yamaha"    "Adidas"    "Oxxo"     
## [471,] "Google"    "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet"
## [472,] "Google"    "Yamaha"    "Adidas"    "Oxxo"      "DHL"      
## [473,] "Google"    "Yamaha"    "Adidas"    "Oxxo"      "Lego"     
## [474,] "Google"    "Yamaha"    "Adidas"    "Oxxo"      "Sabritas" 
## [475,] "Google"    "Yamaha"    "Adidas"    "Oxxo"      "Samsung"  
## [476,] "Google"    "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"     
## [477,] "Google"    "Yamaha"    "DHL"       "Adidas"    "Oxxo"     
## [478,] "Google"    "Yamaha"    "Lego"      "Adidas"    "Oxxo"     
## [479,] "Google"    "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"     
## [480,] "Google"    "Yamaha"    "Samsung"   "Adidas"    "Oxxo"     
## [481,] "Lego"      "Adidas"    "Oxxo"      "Chevrolet" "DHL"      
## [482,] "Lego"      "Adidas"    "Oxxo"      "Chevrolet" "Google"   
## [483,] "Lego"      "Adidas"    "Oxxo"      "Chevrolet" "Sabritas" 
## [484,] "Lego"      "Adidas"    "Oxxo"      "Chevrolet" "Samsung"  
## [485,] "Lego"      "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"   
## [486,] "Lego"      "Adidas"    "Oxxo"      "DHL"       "Chevrolet"
## [487,] "Lego"      "Adidas"    "Oxxo"      "DHL"       "Google"   
## [488,] "Lego"      "Adidas"    "Oxxo"      "DHL"       "Sabritas" 
## [489,] "Lego"      "Adidas"    "Oxxo"      "DHL"       "Samsung"  
## [490,] "Lego"      "Adidas"    "Oxxo"      "DHL"       "Yamaha"   
## [491,] "Lego"      "Adidas"    "Oxxo"      "Google"    "Chevrolet"
## [492,] "Lego"      "Adidas"    "Oxxo"      "Google"    "DHL"      
## [493,] "Lego"      "Adidas"    "Oxxo"      "Google"    "Sabritas" 
## [494,] "Lego"      "Adidas"    "Oxxo"      "Google"    "Samsung"  
## [495,] "Lego"      "Adidas"    "Oxxo"      "Google"    "Yamaha"   
## [496,] "Lego"      "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet"
## [497,] "Lego"      "Adidas"    "Oxxo"      "Sabritas"  "DHL"      
## [498,] "Lego"      "Adidas"    "Oxxo"      "Sabritas"  "Google"   
## [499,] "Lego"      "Adidas"    "Oxxo"      "Sabritas"  "Samsung"  
## [500,] "Lego"      "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"   
## [501,] "Lego"      "Adidas"    "Oxxo"      "Samsung"   "Chevrolet"
## [502,] "Lego"      "Adidas"    "Oxxo"      "Samsung"   "DHL"      
## [503,] "Lego"      "Adidas"    "Oxxo"      "Samsung"   "Google"   
## [504,] "Lego"      "Adidas"    "Oxxo"      "Samsung"   "Sabritas" 
## [505,] "Lego"      "Adidas"    "Oxxo"      "Samsung"   "Yamaha"   
## [506,] "Lego"      "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet"
## [507,] "Lego"      "Adidas"    "Oxxo"      "Yamaha"    "DHL"      
## [508,] "Lego"      "Adidas"    "Oxxo"      "Yamaha"    "Google"   
## [509,] "Lego"      "Adidas"    "Oxxo"      "Yamaha"    "Sabritas" 
## [510,] "Lego"      "Adidas"    "Oxxo"      "Yamaha"    "Samsung"  
## [511,] "Lego"      "Chevrolet" "Adidas"    "Oxxo"      "DHL"      
## [512,] "Lego"      "Chevrolet" "Adidas"    "Oxxo"      "Google"   
## [513,] "Lego"      "Chevrolet" "Adidas"    "Oxxo"      "Sabritas" 
## [514,] "Lego"      "Chevrolet" "Adidas"    "Oxxo"      "Samsung"  
## [515,] "Lego"      "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"   
## [516,] "Lego"      "Chevrolet" "DHL"       "Adidas"    "Oxxo"     
## [517,] "Lego"      "Chevrolet" "Google"    "Adidas"    "Oxxo"     
## [518,] "Lego"      "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"     
## [519,] "Lego"      "Chevrolet" "Samsung"   "Adidas"    "Oxxo"     
## [520,] "Lego"      "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"     
## [521,] "Lego"      "DHL"       "Adidas"    "Oxxo"      "Chevrolet"
## [522,] "Lego"      "DHL"       "Adidas"    "Oxxo"      "Google"   
## [523,] "Lego"      "DHL"       "Adidas"    "Oxxo"      "Sabritas" 
## [524,] "Lego"      "DHL"       "Adidas"    "Oxxo"      "Samsung"  
## [525,] "Lego"      "DHL"       "Adidas"    "Oxxo"      "Yamaha"   
## [526,] "Lego"      "DHL"       "Chevrolet" "Adidas"    "Oxxo"     
## [527,] "Lego"      "DHL"       "Google"    "Adidas"    "Oxxo"     
## [528,] "Lego"      "DHL"       "Sabritas"  "Adidas"    "Oxxo"     
## [529,] "Lego"      "DHL"       "Samsung"   "Adidas"    "Oxxo"     
## [530,] "Lego"      "DHL"       "Yamaha"    "Adidas"    "Oxxo"     
## [531,] "Lego"      "Google"    "Adidas"    "Oxxo"      "Chevrolet"
## [532,] "Lego"      "Google"    "Adidas"    "Oxxo"      "DHL"      
## [533,] "Lego"      "Google"    "Adidas"    "Oxxo"      "Sabritas" 
## [534,] "Lego"      "Google"    "Adidas"    "Oxxo"      "Samsung"  
## [535,] "Lego"      "Google"    "Adidas"    "Oxxo"      "Yamaha"   
## [536,] "Lego"      "Google"    "Chevrolet" "Adidas"    "Oxxo"     
## [537,] "Lego"      "Google"    "DHL"       "Adidas"    "Oxxo"     
## [538,] "Lego"      "Google"    "Sabritas"  "Adidas"    "Oxxo"     
## [539,] "Lego"      "Google"    "Samsung"   "Adidas"    "Oxxo"     
## [540,] "Lego"      "Google"    "Yamaha"    "Adidas"    "Oxxo"     
## [541,] "Lego"      "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet"
## [542,] "Lego"      "Sabritas"  "Adidas"    "Oxxo"      "DHL"      
## [543,] "Lego"      "Sabritas"  "Adidas"    "Oxxo"      "Google"   
## [544,] "Lego"      "Sabritas"  "Adidas"    "Oxxo"      "Samsung"  
## [545,] "Lego"      "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"   
## [546,] "Lego"      "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"     
## [547,] "Lego"      "Sabritas"  "DHL"       "Adidas"    "Oxxo"     
## [548,] "Lego"      "Sabritas"  "Google"    "Adidas"    "Oxxo"     
## [549,] "Lego"      "Sabritas"  "Samsung"   "Adidas"    "Oxxo"     
## [550,] "Lego"      "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"     
## [551,] "Lego"      "Samsung"   "Adidas"    "Oxxo"      "Chevrolet"
## [552,] "Lego"      "Samsung"   "Adidas"    "Oxxo"      "DHL"      
## [553,] "Lego"      "Samsung"   "Adidas"    "Oxxo"      "Google"   
## [554,] "Lego"      "Samsung"   "Adidas"    "Oxxo"      "Sabritas" 
## [555,] "Lego"      "Samsung"   "Adidas"    "Oxxo"      "Yamaha"   
## [556,] "Lego"      "Samsung"   "Chevrolet" "Adidas"    "Oxxo"     
## [557,] "Lego"      "Samsung"   "DHL"       "Adidas"    "Oxxo"     
## [558,] "Lego"      "Samsung"   "Google"    "Adidas"    "Oxxo"     
## [559,] "Lego"      "Samsung"   "Sabritas"  "Adidas"    "Oxxo"     
## [560,] "Lego"      "Samsung"   "Yamaha"    "Adidas"    "Oxxo"     
## [561,] "Lego"      "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet"
## [562,] "Lego"      "Yamaha"    "Adidas"    "Oxxo"      "DHL"      
## [563,] "Lego"      "Yamaha"    "Adidas"    "Oxxo"      "Google"   
## [564,] "Lego"      "Yamaha"    "Adidas"    "Oxxo"      "Sabritas" 
## [565,] "Lego"      "Yamaha"    "Adidas"    "Oxxo"      "Samsung"  
## [566,] "Lego"      "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"     
## [567,] "Lego"      "Yamaha"    "DHL"       "Adidas"    "Oxxo"     
## [568,] "Lego"      "Yamaha"    "Google"    "Adidas"    "Oxxo"     
## [569,] "Lego"      "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"     
## [570,] "Lego"      "Yamaha"    "Samsung"   "Adidas"    "Oxxo"     
## [571,] "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet" "DHL"      
## [572,] "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet" "Google"   
## [573,] "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet" "Lego"     
## [574,] "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet" "Samsung"  
## [575,] "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"   
## [576,] "Sabritas"  "Adidas"    "Oxxo"      "DHL"       "Chevrolet"
## [577,] "Sabritas"  "Adidas"    "Oxxo"      "DHL"       "Google"   
## [578,] "Sabritas"  "Adidas"    "Oxxo"      "DHL"       "Lego"     
## [579,] "Sabritas"  "Adidas"    "Oxxo"      "DHL"       "Samsung"  
## [580,] "Sabritas"  "Adidas"    "Oxxo"      "DHL"       "Yamaha"   
## [581,] "Sabritas"  "Adidas"    "Oxxo"      "Google"    "Chevrolet"
## [582,] "Sabritas"  "Adidas"    "Oxxo"      "Google"    "DHL"      
## [583,] "Sabritas"  "Adidas"    "Oxxo"      "Google"    "Lego"     
## [584,] "Sabritas"  "Adidas"    "Oxxo"      "Google"    "Samsung"  
## [585,] "Sabritas"  "Adidas"    "Oxxo"      "Google"    "Yamaha"   
## [586,] "Sabritas"  "Adidas"    "Oxxo"      "Lego"      "Chevrolet"
## [587,] "Sabritas"  "Adidas"    "Oxxo"      "Lego"      "DHL"      
## [588,] "Sabritas"  "Adidas"    "Oxxo"      "Lego"      "Google"   
## [589,] "Sabritas"  "Adidas"    "Oxxo"      "Lego"      "Samsung"  
## [590,] "Sabritas"  "Adidas"    "Oxxo"      "Lego"      "Yamaha"   
## [591,] "Sabritas"  "Adidas"    "Oxxo"      "Samsung"   "Chevrolet"
## [592,] "Sabritas"  "Adidas"    "Oxxo"      "Samsung"   "DHL"      
## [593,] "Sabritas"  "Adidas"    "Oxxo"      "Samsung"   "Google"   
## [594,] "Sabritas"  "Adidas"    "Oxxo"      "Samsung"   "Lego"     
## [595,] "Sabritas"  "Adidas"    "Oxxo"      "Samsung"   "Yamaha"   
## [596,] "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet"
## [597,] "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"    "DHL"      
## [598,] "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"    "Google"   
## [599,] "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"    "Lego"     
## [600,] "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"    "Samsung"  
## [601,] "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"      "DHL"      
## [602,] "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"      "Google"   
## [603,] "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"      "Lego"     
## [604,] "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"      "Samsung"  
## [605,] "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"   
## [606,] "Sabritas"  "Chevrolet" "DHL"       "Adidas"    "Oxxo"     
## [607,] "Sabritas"  "Chevrolet" "Google"    "Adidas"    "Oxxo"     
## [608,] "Sabritas"  "Chevrolet" "Lego"      "Adidas"    "Oxxo"     
## [609,] "Sabritas"  "Chevrolet" "Samsung"   "Adidas"    "Oxxo"     
## [610,] "Sabritas"  "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"     
## [611,] "Sabritas"  "DHL"       "Adidas"    "Oxxo"      "Chevrolet"
## [612,] "Sabritas"  "DHL"       "Adidas"    "Oxxo"      "Google"   
## [613,] "Sabritas"  "DHL"       "Adidas"    "Oxxo"      "Lego"     
## [614,] "Sabritas"  "DHL"       "Adidas"    "Oxxo"      "Samsung"  
## [615,] "Sabritas"  "DHL"       "Adidas"    "Oxxo"      "Yamaha"   
## [616,] "Sabritas"  "DHL"       "Chevrolet" "Adidas"    "Oxxo"     
## [617,] "Sabritas"  "DHL"       "Google"    "Adidas"    "Oxxo"     
## [618,] "Sabritas"  "DHL"       "Lego"      "Adidas"    "Oxxo"     
## [619,] "Sabritas"  "DHL"       "Samsung"   "Adidas"    "Oxxo"     
## [620,] "Sabritas"  "DHL"       "Yamaha"    "Adidas"    "Oxxo"     
## [621,] "Sabritas"  "Google"    "Adidas"    "Oxxo"      "Chevrolet"
## [622,] "Sabritas"  "Google"    "Adidas"    "Oxxo"      "DHL"      
## [623,] "Sabritas"  "Google"    "Adidas"    "Oxxo"      "Lego"     
## [624,] "Sabritas"  "Google"    "Adidas"    "Oxxo"      "Samsung"  
## [625,] "Sabritas"  "Google"    "Adidas"    "Oxxo"      "Yamaha"   
## [626,] "Sabritas"  "Google"    "Chevrolet" "Adidas"    "Oxxo"     
## [627,] "Sabritas"  "Google"    "DHL"       "Adidas"    "Oxxo"     
## [628,] "Sabritas"  "Google"    "Lego"      "Adidas"    "Oxxo"     
## [629,] "Sabritas"  "Google"    "Samsung"   "Adidas"    "Oxxo"     
## [630,] "Sabritas"  "Google"    "Yamaha"    "Adidas"    "Oxxo"     
## [631,] "Sabritas"  "Lego"      "Adidas"    "Oxxo"      "Chevrolet"
## [632,] "Sabritas"  "Lego"      "Adidas"    "Oxxo"      "DHL"      
## [633,] "Sabritas"  "Lego"      "Adidas"    "Oxxo"      "Google"   
## [634,] "Sabritas"  "Lego"      "Adidas"    "Oxxo"      "Samsung"  
## [635,] "Sabritas"  "Lego"      "Adidas"    "Oxxo"      "Yamaha"   
## [636,] "Sabritas"  "Lego"      "Chevrolet" "Adidas"    "Oxxo"     
## [637,] "Sabritas"  "Lego"      "DHL"       "Adidas"    "Oxxo"     
## [638,] "Sabritas"  "Lego"      "Google"    "Adidas"    "Oxxo"     
## [639,] "Sabritas"  "Lego"      "Samsung"   "Adidas"    "Oxxo"     
## [640,] "Sabritas"  "Lego"      "Yamaha"    "Adidas"    "Oxxo"     
## [641,] "Sabritas"  "Samsung"   "Adidas"    "Oxxo"      "Chevrolet"
## [642,] "Sabritas"  "Samsung"   "Adidas"    "Oxxo"      "DHL"      
## [643,] "Sabritas"  "Samsung"   "Adidas"    "Oxxo"      "Google"   
## [644,] "Sabritas"  "Samsung"   "Adidas"    "Oxxo"      "Lego"     
## [645,] "Sabritas"  "Samsung"   "Adidas"    "Oxxo"      "Yamaha"   
## [646,] "Sabritas"  "Samsung"   "Chevrolet" "Adidas"    "Oxxo"     
## [647,] "Sabritas"  "Samsung"   "DHL"       "Adidas"    "Oxxo"     
## [648,] "Sabritas"  "Samsung"   "Google"    "Adidas"    "Oxxo"     
## [649,] "Sabritas"  "Samsung"   "Lego"      "Adidas"    "Oxxo"     
## [650,] "Sabritas"  "Samsung"   "Yamaha"    "Adidas"    "Oxxo"     
## [651,] "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet"
## [652,] "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"      "DHL"      
## [653,] "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"      "Google"   
## [654,] "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"      "Lego"     
## [655,] "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"      "Samsung"  
## [656,] "Sabritas"  "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"     
## [657,] "Sabritas"  "Yamaha"    "DHL"       "Adidas"    "Oxxo"     
## [658,] "Sabritas"  "Yamaha"    "Google"    "Adidas"    "Oxxo"     
## [659,] "Sabritas"  "Yamaha"    "Lego"      "Adidas"    "Oxxo"     
## [660,] "Sabritas"  "Yamaha"    "Samsung"   "Adidas"    "Oxxo"     
## [661,] "Samsung"   "Adidas"    "Oxxo"      "Chevrolet" "DHL"      
## [662,] "Samsung"   "Adidas"    "Oxxo"      "Chevrolet" "Google"   
## [663,] "Samsung"   "Adidas"    "Oxxo"      "Chevrolet" "Lego"     
## [664,] "Samsung"   "Adidas"    "Oxxo"      "Chevrolet" "Sabritas" 
## [665,] "Samsung"   "Adidas"    "Oxxo"      "Chevrolet" "Yamaha"   
## [666,] "Samsung"   "Adidas"    "Oxxo"      "DHL"       "Chevrolet"
## [667,] "Samsung"   "Adidas"    "Oxxo"      "DHL"       "Google"   
## [668,] "Samsung"   "Adidas"    "Oxxo"      "DHL"       "Lego"     
## [669,] "Samsung"   "Adidas"    "Oxxo"      "DHL"       "Sabritas" 
## [670,] "Samsung"   "Adidas"    "Oxxo"      "DHL"       "Yamaha"   
## [671,] "Samsung"   "Adidas"    "Oxxo"      "Google"    "Chevrolet"
## [672,] "Samsung"   "Adidas"    "Oxxo"      "Google"    "DHL"      
## [673,] "Samsung"   "Adidas"    "Oxxo"      "Google"    "Lego"     
## [674,] "Samsung"   "Adidas"    "Oxxo"      "Google"    "Sabritas" 
## [675,] "Samsung"   "Adidas"    "Oxxo"      "Google"    "Yamaha"   
## [676,] "Samsung"   "Adidas"    "Oxxo"      "Lego"      "Chevrolet"
## [677,] "Samsung"   "Adidas"    "Oxxo"      "Lego"      "DHL"      
## [678,] "Samsung"   "Adidas"    "Oxxo"      "Lego"      "Google"   
## [679,] "Samsung"   "Adidas"    "Oxxo"      "Lego"      "Sabritas" 
## [680,] "Samsung"   "Adidas"    "Oxxo"      "Lego"      "Yamaha"   
## [681,] "Samsung"   "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet"
## [682,] "Samsung"   "Adidas"    "Oxxo"      "Sabritas"  "DHL"      
## [683,] "Samsung"   "Adidas"    "Oxxo"      "Sabritas"  "Google"   
## [684,] "Samsung"   "Adidas"    "Oxxo"      "Sabritas"  "Lego"     
## [685,] "Samsung"   "Adidas"    "Oxxo"      "Sabritas"  "Yamaha"   
## [686,] "Samsung"   "Adidas"    "Oxxo"      "Yamaha"    "Chevrolet"
## [687,] "Samsung"   "Adidas"    "Oxxo"      "Yamaha"    "DHL"      
## [688,] "Samsung"   "Adidas"    "Oxxo"      "Yamaha"    "Google"   
## [689,] "Samsung"   "Adidas"    "Oxxo"      "Yamaha"    "Lego"     
## [690,] "Samsung"   "Adidas"    "Oxxo"      "Yamaha"    "Sabritas" 
## [691,] "Samsung"   "Chevrolet" "Adidas"    "Oxxo"      "DHL"      
## [692,] "Samsung"   "Chevrolet" "Adidas"    "Oxxo"      "Google"   
## [693,] "Samsung"   "Chevrolet" "Adidas"    "Oxxo"      "Lego"     
## [694,] "Samsung"   "Chevrolet" "Adidas"    "Oxxo"      "Sabritas" 
## [695,] "Samsung"   "Chevrolet" "Adidas"    "Oxxo"      "Yamaha"   
## [696,] "Samsung"   "Chevrolet" "DHL"       "Adidas"    "Oxxo"     
## [697,] "Samsung"   "Chevrolet" "Google"    "Adidas"    "Oxxo"     
## [698,] "Samsung"   "Chevrolet" "Lego"      "Adidas"    "Oxxo"     
## [699,] "Samsung"   "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"     
## [700,] "Samsung"   "Chevrolet" "Yamaha"    "Adidas"    "Oxxo"     
## [701,] "Samsung"   "DHL"       "Adidas"    "Oxxo"      "Chevrolet"
## [702,] "Samsung"   "DHL"       "Adidas"    "Oxxo"      "Google"   
## [703,] "Samsung"   "DHL"       "Adidas"    "Oxxo"      "Lego"     
## [704,] "Samsung"   "DHL"       "Adidas"    "Oxxo"      "Sabritas" 
## [705,] "Samsung"   "DHL"       "Adidas"    "Oxxo"      "Yamaha"   
## [706,] "Samsung"   "DHL"       "Chevrolet" "Adidas"    "Oxxo"     
## [707,] "Samsung"   "DHL"       "Google"    "Adidas"    "Oxxo"     
## [708,] "Samsung"   "DHL"       "Lego"      "Adidas"    "Oxxo"     
## [709,] "Samsung"   "DHL"       "Sabritas"  "Adidas"    "Oxxo"     
## [710,] "Samsung"   "DHL"       "Yamaha"    "Adidas"    "Oxxo"     
## [711,] "Samsung"   "Google"    "Adidas"    "Oxxo"      "Chevrolet"
## [712,] "Samsung"   "Google"    "Adidas"    "Oxxo"      "DHL"      
## [713,] "Samsung"   "Google"    "Adidas"    "Oxxo"      "Lego"     
## [714,] "Samsung"   "Google"    "Adidas"    "Oxxo"      "Sabritas" 
## [715,] "Samsung"   "Google"    "Adidas"    "Oxxo"      "Yamaha"   
## [716,] "Samsung"   "Google"    "Chevrolet" "Adidas"    "Oxxo"     
## [717,] "Samsung"   "Google"    "DHL"       "Adidas"    "Oxxo"     
## [718,] "Samsung"   "Google"    "Lego"      "Adidas"    "Oxxo"     
## [719,] "Samsung"   "Google"    "Sabritas"  "Adidas"    "Oxxo"     
## [720,] "Samsung"   "Google"    "Yamaha"    "Adidas"    "Oxxo"     
## [721,] "Samsung"   "Lego"      "Adidas"    "Oxxo"      "Chevrolet"
## [722,] "Samsung"   "Lego"      "Adidas"    "Oxxo"      "DHL"      
## [723,] "Samsung"   "Lego"      "Adidas"    "Oxxo"      "Google"   
## [724,] "Samsung"   "Lego"      "Adidas"    "Oxxo"      "Sabritas" 
## [725,] "Samsung"   "Lego"      "Adidas"    "Oxxo"      "Yamaha"   
## [726,] "Samsung"   "Lego"      "Chevrolet" "Adidas"    "Oxxo"     
## [727,] "Samsung"   "Lego"      "DHL"       "Adidas"    "Oxxo"     
## [728,] "Samsung"   "Lego"      "Google"    "Adidas"    "Oxxo"     
## [729,] "Samsung"   "Lego"      "Sabritas"  "Adidas"    "Oxxo"     
## [730,] "Samsung"   "Lego"      "Yamaha"    "Adidas"    "Oxxo"     
## [731,] "Samsung"   "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet"
## [732,] "Samsung"   "Sabritas"  "Adidas"    "Oxxo"      "DHL"      
## [733,] "Samsung"   "Sabritas"  "Adidas"    "Oxxo"      "Google"   
## [734,] "Samsung"   "Sabritas"  "Adidas"    "Oxxo"      "Lego"     
## [735,] "Samsung"   "Sabritas"  "Adidas"    "Oxxo"      "Yamaha"   
## [736,] "Samsung"   "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"     
## [737,] "Samsung"   "Sabritas"  "DHL"       "Adidas"    "Oxxo"     
## [738,] "Samsung"   "Sabritas"  "Google"    "Adidas"    "Oxxo"     
## [739,] "Samsung"   "Sabritas"  "Lego"      "Adidas"    "Oxxo"     
## [740,] "Samsung"   "Sabritas"  "Yamaha"    "Adidas"    "Oxxo"     
## [741,] "Samsung"   "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet"
## [742,] "Samsung"   "Yamaha"    "Adidas"    "Oxxo"      "DHL"      
## [743,] "Samsung"   "Yamaha"    "Adidas"    "Oxxo"      "Google"   
## [744,] "Samsung"   "Yamaha"    "Adidas"    "Oxxo"      "Lego"     
## [745,] "Samsung"   "Yamaha"    "Adidas"    "Oxxo"      "Sabritas" 
## [746,] "Samsung"   "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"     
## [747,] "Samsung"   "Yamaha"    "DHL"       "Adidas"    "Oxxo"     
## [748,] "Samsung"   "Yamaha"    "Google"    "Adidas"    "Oxxo"     
## [749,] "Samsung"   "Yamaha"    "Lego"      "Adidas"    "Oxxo"     
## [750,] "Samsung"   "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"     
## [751,] "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet" "DHL"      
## [752,] "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet" "Google"   
## [753,] "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet" "Lego"     
## [754,] "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet" "Sabritas" 
## [755,] "Yamaha"    "Adidas"    "Oxxo"      "Chevrolet" "Samsung"  
## [756,] "Yamaha"    "Adidas"    "Oxxo"      "DHL"       "Chevrolet"
## [757,] "Yamaha"    "Adidas"    "Oxxo"      "DHL"       "Google"   
## [758,] "Yamaha"    "Adidas"    "Oxxo"      "DHL"       "Lego"     
## [759,] "Yamaha"    "Adidas"    "Oxxo"      "DHL"       "Sabritas" 
## [760,] "Yamaha"    "Adidas"    "Oxxo"      "DHL"       "Samsung"  
## [761,] "Yamaha"    "Adidas"    "Oxxo"      "Google"    "Chevrolet"
## [762,] "Yamaha"    "Adidas"    "Oxxo"      "Google"    "DHL"      
## [763,] "Yamaha"    "Adidas"    "Oxxo"      "Google"    "Lego"     
## [764,] "Yamaha"    "Adidas"    "Oxxo"      "Google"    "Sabritas" 
## [765,] "Yamaha"    "Adidas"    "Oxxo"      "Google"    "Samsung"  
## [766,] "Yamaha"    "Adidas"    "Oxxo"      "Lego"      "Chevrolet"
## [767,] "Yamaha"    "Adidas"    "Oxxo"      "Lego"      "DHL"      
## [768,] "Yamaha"    "Adidas"    "Oxxo"      "Lego"      "Google"   
## [769,] "Yamaha"    "Adidas"    "Oxxo"      "Lego"      "Sabritas" 
## [770,] "Yamaha"    "Adidas"    "Oxxo"      "Lego"      "Samsung"  
## [771,] "Yamaha"    "Adidas"    "Oxxo"      "Sabritas"  "Chevrolet"
## [772,] "Yamaha"    "Adidas"    "Oxxo"      "Sabritas"  "DHL"      
## [773,] "Yamaha"    "Adidas"    "Oxxo"      "Sabritas"  "Google"   
## [774,] "Yamaha"    "Adidas"    "Oxxo"      "Sabritas"  "Lego"     
## [775,] "Yamaha"    "Adidas"    "Oxxo"      "Sabritas"  "Samsung"  
## [776,] "Yamaha"    "Adidas"    "Oxxo"      "Samsung"   "Chevrolet"
## [777,] "Yamaha"    "Adidas"    "Oxxo"      "Samsung"   "DHL"      
## [778,] "Yamaha"    "Adidas"    "Oxxo"      "Samsung"   "Google"   
## [779,] "Yamaha"    "Adidas"    "Oxxo"      "Samsung"   "Lego"     
## [780,] "Yamaha"    "Adidas"    "Oxxo"      "Samsung"   "Sabritas" 
## [781,] "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"      "DHL"      
## [782,] "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"      "Google"   
## [783,] "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"      "Lego"     
## [784,] "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"      "Sabritas" 
## [785,] "Yamaha"    "Chevrolet" "Adidas"    "Oxxo"      "Samsung"  
## [786,] "Yamaha"    "Chevrolet" "DHL"       "Adidas"    "Oxxo"     
## [787,] "Yamaha"    "Chevrolet" "Google"    "Adidas"    "Oxxo"     
## [788,] "Yamaha"    "Chevrolet" "Lego"      "Adidas"    "Oxxo"     
## [789,] "Yamaha"    "Chevrolet" "Sabritas"  "Adidas"    "Oxxo"     
## [790,] "Yamaha"    "Chevrolet" "Samsung"   "Adidas"    "Oxxo"     
## [791,] "Yamaha"    "DHL"       "Adidas"    "Oxxo"      "Chevrolet"
## [792,] "Yamaha"    "DHL"       "Adidas"    "Oxxo"      "Google"   
## [793,] "Yamaha"    "DHL"       "Adidas"    "Oxxo"      "Lego"     
## [794,] "Yamaha"    "DHL"       "Adidas"    "Oxxo"      "Sabritas" 
## [795,] "Yamaha"    "DHL"       "Adidas"    "Oxxo"      "Samsung"  
## [796,] "Yamaha"    "DHL"       "Chevrolet" "Adidas"    "Oxxo"     
## [797,] "Yamaha"    "DHL"       "Google"    "Adidas"    "Oxxo"     
## [798,] "Yamaha"    "DHL"       "Lego"      "Adidas"    "Oxxo"     
## [799,] "Yamaha"    "DHL"       "Sabritas"  "Adidas"    "Oxxo"     
## [800,] "Yamaha"    "DHL"       "Samsung"   "Adidas"    "Oxxo"     
## [801,] "Yamaha"    "Google"    "Adidas"    "Oxxo"      "Chevrolet"
## [802,] "Yamaha"    "Google"    "Adidas"    "Oxxo"      "DHL"      
## [803,] "Yamaha"    "Google"    "Adidas"    "Oxxo"      "Lego"     
## [804,] "Yamaha"    "Google"    "Adidas"    "Oxxo"      "Sabritas" 
## [805,] "Yamaha"    "Google"    "Adidas"    "Oxxo"      "Samsung"  
## [806,] "Yamaha"    "Google"    "Chevrolet" "Adidas"    "Oxxo"     
## [807,] "Yamaha"    "Google"    "DHL"       "Adidas"    "Oxxo"     
## [808,] "Yamaha"    "Google"    "Lego"      "Adidas"    "Oxxo"     
## [809,] "Yamaha"    "Google"    "Sabritas"  "Adidas"    "Oxxo"     
## [810,] "Yamaha"    "Google"    "Samsung"   "Adidas"    "Oxxo"     
## [811,] "Yamaha"    "Lego"      "Adidas"    "Oxxo"      "Chevrolet"
## [812,] "Yamaha"    "Lego"      "Adidas"    "Oxxo"      "DHL"      
## [813,] "Yamaha"    "Lego"      "Adidas"    "Oxxo"      "Google"   
## [814,] "Yamaha"    "Lego"      "Adidas"    "Oxxo"      "Sabritas" 
## [815,] "Yamaha"    "Lego"      "Adidas"    "Oxxo"      "Samsung"  
## [816,] "Yamaha"    "Lego"      "Chevrolet" "Adidas"    "Oxxo"     
## [817,] "Yamaha"    "Lego"      "DHL"       "Adidas"    "Oxxo"     
## [818,] "Yamaha"    "Lego"      "Google"    "Adidas"    "Oxxo"     
## [819,] "Yamaha"    "Lego"      "Sabritas"  "Adidas"    "Oxxo"     
## [820,] "Yamaha"    "Lego"      "Samsung"   "Adidas"    "Oxxo"     
## [821,] "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"      "Chevrolet"
## [822,] "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"      "DHL"      
## [823,] "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"      "Google"   
## [824,] "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"      "Lego"     
## [825,] "Yamaha"    "Sabritas"  "Adidas"    "Oxxo"      "Samsung"  
## [826,] "Yamaha"    "Sabritas"  "Chevrolet" "Adidas"    "Oxxo"     
## [827,] "Yamaha"    "Sabritas"  "DHL"       "Adidas"    "Oxxo"     
## [828,] "Yamaha"    "Sabritas"  "Google"    "Adidas"    "Oxxo"     
## [829,] "Yamaha"    "Sabritas"  "Lego"      "Adidas"    "Oxxo"     
## [830,] "Yamaha"    "Sabritas"  "Samsung"   "Adidas"    "Oxxo"     
## [831,] "Yamaha"    "Samsung"   "Adidas"    "Oxxo"      "Chevrolet"
## [832,] "Yamaha"    "Samsung"   "Adidas"    "Oxxo"      "DHL"      
## [833,] "Yamaha"    "Samsung"   "Adidas"    "Oxxo"      "Google"   
## [834,] "Yamaha"    "Samsung"   "Adidas"    "Oxxo"      "Lego"     
## [835,] "Yamaha"    "Samsung"   "Adidas"    "Oxxo"      "Sabritas" 
## [836,] "Yamaha"    "Samsung"   "Chevrolet" "Adidas"    "Oxxo"     
## [837,] "Yamaha"    "Samsung"   "DHL"       "Adidas"    "Oxxo"     
## [838,] "Yamaha"    "Samsung"   "Google"    "Adidas"    "Oxxo"     
## [839,] "Yamaha"    "Samsung"   "Lego"      "Adidas"    "Oxxo"     
## [840,] "Yamaha"    "Samsung"   "Sabritas"  "Adidas"    "Oxxo"
frecuencia <- nrow(filtro)
paste("Existen ", frecuencia, " aparece de manera contigua y en este orden los equipos de Adidas y Oxxo en cualquier columna , de un total de ", nrow(Pn.empresas), " representan ", round(frecuencia / nrow(Pn.empresas) * 100, 2), "%")
## [1] "Existen  840  aparece de manera contigua y en este orden los equipos de Adidas y Oxxo en cualquier columna , de un total de  15120  representan  5.56 %"

Bibliografía