powered by
This function calculates the F statistic between two groups.
fisher(x = NULL, y = NULL, learn = FALSE, interactive = FALSE)
The F statistic (for non-interactive mode)
Optional first vector (not needed for interactive mode)
Optional second vector (not needed for interactive mode)
Logical, if TRUE shows step-by-step explanation
Logical, if TRUE enables interactive practice mode
x <- c(70,75,74,72,68,59) y <- c(74,77,70,80,72,76) # Simple calculation fisher(x, y) # Learning mode fisher(x, y, learn = TRUE) # Interactive mode if(interactive()){ fisher(interactive = TRUE) }
Run the code above in your browser using DataLab