Learn R Programming

LearningRlab (version 2.4)

fisher_: F Fisher Distribution Calculus Function

Description

This function calculates the fisher distribution of a numbers vector.

Usage

fisher_(x,y)

Value

Numeric, the fisher distribution.

Arguments

x

Should be a vector

y

Should be a vector

Author

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

Details

To calculate the fisher distribution, the user should give two vectors of numbers. The result is a continuous probability distribution that arises frequently as the null distribution of a test statistic. The fisher distributionformule is the following:

Examples

Run this code

    #data creation
    x <- c(70,75,74,72,68,59)
    y <- c(74,77,70,80,72,76)
    
    fisher_(x,y)
  

Run the code above in your browser using DataLab