Mensaje de error

  • Deprecated function: The each() function is deprecated. This message will be suppressed on further calls en book_prev() (línea 775 de /home1/montes/public_html/drupal/modules/book/book.module).
  • Deprecated function: implode(): Passing glue string after array is deprecated. Swap the parameters en drupal_get_feeds() (línea 394 de /home1/montes/public_html/drupal/includes/common.inc).

1.1 Simulacion estadistica de la mediana del Ejercicio 1.1

Solapas principales

[adsense:336x280:9156825571]

1 Simulacion estadistica de la mediana con R-Project

> x <- c(rep(47,1),rep(48,3),rep(49,2),rep(50,8),rep(51,3),rep(52,2),rep(53,1));
> median(x)
[1] 50

 

2 Simulacion estadistica de la mediana con Mathematica

x := Join[ConstantArray[47, 1], ConstantArray[48, 3], 
   ConstantArray[49, 2], ConstantArray[50, 8], ConstantArray[51, 3], 
   ConstantArray[52, 2], ConstantArray[53, 1]];
   
Median[x]

50

 

Español
Pin It