Skip to content

Delete bono-10.xlsx - #1

Open
187sec wants to merge 4 commits into
XLab-Tongji:masterfrom
187sec:patch-1
Open

Delete bono-10.xlsx#1
187sec wants to merge 4 commits into
XLab-Tongji:masterfrom
187sec:patch-1

Conversation

@187sec

@187sec 187sec commented Nov 3, 2022

Copy link
Copy Markdown

var.test(x, ...)
var.test(x, y, ratio = 1, alternative = />;c("two.sided", "less", "greater"), conf.level = 0.95, ...)

x,y: Normally distributed data sets
ratio: Hypothesized ratio of x/y, default is 1
alternative: alternative hypothesis, including "two.sided","greater","less" conf.level: confidence level

x <- rnorm(100, mean=0)
y <- rnorm(100, mean=1)
var.test(x,y)
F test to compare two variances
data: x and y
F = 0.8795, num df = 99, denom df = 99, p-value = 0.5242 alternative hypothesis: true ratio of variances is not equal to 1 95 percent confidence interval:
0.5917706 1.3071567
sample estimates:
ratio of variances
0.8795095

Since the p-value = 0.5242, which is much higher than 0.05, the hypothesis that the variances of x and y are


var.test(x, ...)
var.test(x, y, ratio = 1, alternative = c("two.sided", "less", "greater"),
conf.level = 0.95, ...)

x,y: Normally distributed data sets
ratio: Hypothesized ratio of x/y, default is 1
alternative: alternative hypothesis, including "two.sided","greater","less"
conf.level: confidence level

> x <- rnorm(100, mean=0)
> y <- rnorm(100, mean=1)
> var.test(x,y)
F test to compare two variances
data: x and y
F = 0.8795, num df = 99, denom df = 99, p-value = 0.5242
alternative hypothesis: true ratio of variances is not equal to 1
95 percent confidence interval:
0.5917706 1.3071567
sample estimates:
ratio of variances
0.8795095

Since the p-value = 0.5242, which is much higher than 0.05, the hypothesis that the variances of x and y are
Jerradallenmathews
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant