fisher_: F Fisher Distribution Calculus Function

View source: R/Statistics.R

fisher_R Documentation

F Fisher Distribution Calculus Function

Description

This function calculates the fisher distribution of a numbers vector.

Usage

fisher_(x,y)

Arguments

x

Should be a vector

y

Should be a vector

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:
fisher.jpg

Value

Numeric, the fisher distribution.

Note

A vector is created by c(), like c(1,2,3,4,5) creates a vector with the numbers: 1,2,3,4,5

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 <- c(70,75,74,72,68,59)
    y <- c(74,77,70,80,72,76)
    
    fisher_(x,y)
  

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