Answered step by step
Verified Expert Solution
Link Copied!

Question

00
1 Approved Answer

1.Consider the data set below. mydata

1.Consider the data set below.

mydata<-c(4, 5, 7, 9, 10, 12, 14, 16, 18, 23, 28, 33, 53, 77)

Enter the data into R (you can copy the command above, and paste it into R).

The quantile plot command is :qqnorm(mydata).Is this data set normally distributed?

What does the shapiro.test(mydata) command tell you?(Null hypothesis of this test is that the dataset you give it comes from a normal distribution).

If you conclude above that mydata is not normally distributed, then apply a log transform:

mydata2<-log(mydata)

and assess whether mydata2 is normally distributed with the Shapiro test.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Financial Accounting

Authors: J. David Spiceland, Wayne Thomas, Don Herrmann

3rd edition

9780077506902, 78025540, 77506901, 978-0078025549

Students also viewed these Mathematics questions

Question

What is specific performance?

Answered: 1 week ago