Learn R Programming

LearningRlab (version 2.2)

fisher_: 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

Value

Numeric, the fisher distribution.

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
# NOT RUN {
    #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