tstudent_: T-Student Distribution Calculus Function

View source: R/Statistics.R

tstudent_R Documentation

T-Student Distribution Calculus Function

Description

This function calculates the T-Student distribution of experiment.

Usage

tstudent_(x,u,s,n)

Arguments

x

Should be a number

u

Should be a number

s

Should be a number

n

Should be a number

Details

To calculate the T-Student distribution, the user should give four number (sample mean, population mean, population standard deviation and sample size). The result is a probability distribution that arises from the problem of estimating the mean of a normally distributed population when the sample size is small. The T-Student distributionformule is the following:
tstudent.jpg

Value

Numeric, the T-Student distribution.

Note

Each variable is a number. Example: x <- 2 | y <- 4

Author(s)

Jose Manuel Gomez Caceres, josemanuel.gomezc@edu.uah.es
Juan Jose Cuadrado, jjcg@uah.es
Universidad de Alcala de Henares

Examples


    #data creation
    x = 52.9
    u = 50
    s = 3
    n = 10
    
    tstudent_(x,u,s,n)
  

LearningRlab documentation built on Aug. 31, 2023, 1:08 a.m.