- #1
A_B
- 93
- 1
Homework Statement
I have a project for statistics, and one question asks to first investigate the normality of "Wage", and "if this isn't normally distributed" to check normality for "lnWage", the log of "Wage". I'm supposed to use the program "R" for all this.(http://www.r-project.org/" )
I've attached the relevant data, and a normal qq plot of lnWage
Homework Equations
none (in "R" command: shapiro.test("data"))
The Attempt at a Solution
> shapiro.test(Bwages$Wage)
Shapiro-Wilk normality test
data: Bwages$Wage
W = 0.8675, p-value < 2.2e-16
> shapiro.test(Bwages$lnWage)
Shapiro-Wilk normality test
data: Bwages$lnWage
W = 0.9892, p-value = 5.993e-09
As you can see, the p-values are very very small for both, so that we must conclude neither are distributed normally.
I't just that I don't really trust this, if they give you something like this in a project you'd expect the transformation to be normally distributed so you can say "jippie" and use normality in later questions
Thanks,
Alex
Attachments
Last edited by a moderator: