Using R
(a) The output from the shapiro.test( ) function suggests that the shrinkage values at low injection velocity dataset is normally distributed (p = 0.2675 > 0.05) while the results for shrinkage values at high injection velocity suggest that these dataset are not normally distributed (p ≤ 0.05).
(b) Be sure you’ve installed the e1071 package and loaded it with the library( ) function. You can run the following lines of code to test for kurtosis.
If kurtosis is near zero then the distribution is “mesokurtic,” or is consistent with a bell-shaped curve without a really sharp peak or a flat-topped peak. If the value is a relatively large, positive number then the data are more pointy in the middle than a regular, bell-shaped distribution. Such a distribution is referred to as being “leptokurtic.” If the value is negative then the distribution is relatively flat-topped.
As we can see here the kurtosis value for shrinkage values at low injection velocity is negative.
The shrinkage values at low injection velocity distribution is referred to as being “platykurtic”.
The kurtosis value for shrinkage values at high injection velocity is positive.
The shrinkage values at high injection velocity distribution is referred to as being “leptokurtic”.
Comments
Leave a comment