> For the complete documentation index, see [llms.txt](https://docs.exploratory.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.exploratory.io/statistics/f-test.md).

# F-test

## Introduction

Execute F-test, which checks the difference of variances between groups.

## How to Access?

You can access from 'Add' (Plus) button.

![](https://2850417076-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4HLCK3olgduYoe3RVS%2F-M4oMvCUDQwHTJ0eWi_f%2F-M4oNDtzwqHy1a931ERB%2Ff_test_add.png?generation=1586795485601872\&alt=media)

## How to Use?

#### Column Selection

![](https://2850417076-files.gitbook.io/~/files/v0/b/gitbook-legacy-files/o/assets%2F-M4HLCK3olgduYoe3RVS%2F-M4oMvCUDQwHTJ0eWi_f%2F-M4oNDu0fq9V_KMyBLx5%2Ff_test_dialog.png?generation=1586795485466728\&alt=media)

* Value Column - Numeric column whose variances is calculated.
* Group Column - Label column of 2 groups.

### Parameters

* Population Variance Ratio (Optional) - The default is 1. The hypothesized population variances ratio.
* Type of Alternative Hypothesis (Optional) - The default is "two.sided". What kind of alternative hypothesis to be used. This can be
  * "two.sided"
  * "less"
  * "greater"
* Confidence Level (Optional) - The default is 0.95. The level of confidence interval.
* Subset (Optional) - a vector to specify a subset of observations to be used.
* NA Action (Optional) - The default is "na.fail". This changes the behaviour of NA data. Can be one of the following.
  * "na.omit"
  * "na.fail"
  * "na.exclude"
  * "na.pass"
  * NULL

Take a look at the [reference document](https://stat.ethz.ch/R-manual/R-devel/library/stats/html/var.test.html) for the 'var.test' function from base R for more details on the parameters.
