Displaying 1 result from an estimated 1 matches for "selectedv".
Did you mean:
selected
2010 Apr 16
3
Is it ok to apply the z.test this way?
...ncludes values between 0-1. So, it is not really normal even though shapiro.test says it is highly normal... Can I do something like this and think that the values given are right. z.test is from package TeachingDemos.
-------------------------------------------------------------------------------
SelectedVals=c()
for(i in seq(0,1,by=0.001))
{
if((z.test(i, mu=mean(Distribution), stdev=sd(Distribution))$p.value)<=0.05) SelectedVals=c(SelectedVals,i)
}
-------------------------------------------------------------------------------
I have marked the border values given by this script to the histogr...