I would like to understand the interpretation of One Sample T test in R. This is my code
x <- rnorm(100)
qqnorm(x)
qqline(x)
t.test(x,mu = 5)
I have used randomly generated normal data for the test. I understand the part that the T test wants to check whether the mean of the data x is equal to the hypothetical mean 5.
How will I interpret the result? Can anyone explain the meaning of the values t,df,p-value and confidence interval. Thanks for the help.
