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).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.inc).
  • Notice: Trying to access array offset on value of type int en element_children() (línea 6422 de /home1/montes/public_html/drupal/includes/common.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).

Distribucion t-Student (dada la probabilidad calcular cantidad en un intervalo)

Solapas principales

[adsense:336x280:9156825571]
Simulacion con R-Project del ejercicio de calcular los margenes a de la probabilidad

$P(-a\leq t_{18} \leq a)=0.99$ de una distribucion t-Student. Se puede hacer de varias maneras.

  1. Sin instalar nada

    Programa.
    ># P(-a <= x <= a)=P(x<=a)-P(x<=-a)=P(x<=a)-(1-P(x<=a))=2*P(x<=a)-1  
    P(x<=a)=(0.99+1)/2
    
    >	
    >qt(p=(0.99+1)/2, df=18)
    [1] 2.87844
    

     

  2. Instalando el paquete (package) de R, distr

    Programa.
    >library(distr)
    >
    >X <- Td(df=18)
    >
    >q(X)((0.99+1)/2)
    [1] 2.87844
    

Español

Añadir nuevo comentario

Plain text

  • No se permiten etiquetas HTML.
  • Las direcciones de las páginas web y las de correo se convierten en enlaces automáticamente.
  • Saltos automáticos de líneas y de párrafos.
Pin It