var test

Solutions on MaxInterview for var test by the best coders in the world

showing results for - "var test"
Loukas
20 Feb 2018
1 
2x <- rnorm(50, mean = 0, sd = 2) # génération d'un échantillon x suivant la loi normale
3y <- rnorm(30, mean = 1, sd = 1)# génération d'un échantillon y suivant la loi normale
4var.test(x, y)  # test F
5