Mensaje de error

  • Warning: preg_replace(): Compilation failed: invalid range in character class at offset 16 en _bbcode_filter_process() (línea 261 de /home1/montes/public_html/drupal/sites/all/modules/bbcode/bbcode-filter.inc).
  • 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).

coeficiente de variacion de Pearson

Español

3.3 Simulacion estadistica del Coeficiente de variacion de Pearson del Ejercicio 1.3

[adsense:336x280:9156825571]
  • Simulacion estadistica del coeficiente de variacion de Pearson con R-Project 
     x1 <- c(rep(10,5),rep(25,5),rep(35,6),rep(45,10),rep(55,38) 
    ,rep(65,30) ,rep(75,20),rep(85,4),rep(95,2));
     
    cvp <- function(x) {
    
     ni<- table(x);
    
    n<-sum(ni);
     
    m1<- mean(x);
    s1 <-sd(x)*sqrt((n-1)/n);
    cv<- s1/abs(m1);
    cv
      }
    
    cvp(x1)
    
    [1] 12.52664
    
Español

Páginas

Pin It
Subscribe to RSS - coeficiente de variacion de Pearson