Question

In: Statistics and Probability

How can you resolve this case study by using R studio from chapter 10 , book...

How can you resolve this case study by using R studio from chapter 10 , book business statistics written by Jaggia/Kelly third edition.can you please resolve for me

Case study 10.1

Chad perrone is a financial analyst Boston studying the annual return data for the health and information technology industries. He randomly samples 20 firms in each industry and notes each firm’s annual return. A portion of the data is shown in the accompanying table.

Data for Case Study 10.1 Annual Returns (in percent) for Firms in Health and Information Technology Industries

Health

Information Technology

10.29

4.77

32.17

1.14

.

.

.

.

.

.

13.21

22.61

In a report, use the sample information to

  1. Provide descriptive statistic and comment on the reward and risk in each industry.
  2. Determine whether the average returns in each industry differ at the 5% significance level. Assume that the population variances are not equal

Solutions

Expert Solution

The R output is:

The R code is:

Health <- c(10.29,32.17,34.27,10.57,20.27,31.43,15.4,0.88,17.85,28.98,6.49,28.73,8.17,14.83,12.89,23.51,29.14,4.42,34.67,13.21)
IT <- c(4.77,1.14,-12.72,48.1,6.69,11.65,53.28,-10.41,50.88,48.63,24.67,23.88,-14.8,6.94,29.52,43.42,23.56,-6.62,45.55,22.61)
summary(Health)
summary(IT)
t.test(Health, IT, var.equal = FALSE, alternative = "two.sided")

Summary statistics shows that the reward in IT industries is greater than health industries and IT industries have more variable rewards and risk in comparison to health industries.

The hypothesis being tested is:

H0: µ1 = µ2

H1: µ1 ≠ µ2

The p-value is 0.8432.

Since the p-value (0.8432) is greater than the significance level (0.05), we cannot reject the null hypothesis.

Therefore, we cannot conclude that the average returns in each industry differ at the 5% significance level.

Please give me a thumbs-up if this helps you out. Thank you!


Related Solutions

How can I resolve this case study by using R studio from chapter 10 , book...
How can I resolve this case study by using R studio from chapter 10 , book business statistics written by Jaggia/Kelly third edition.can you please resolve for me CASE STUDY 10.2 The Speedo LZR Racer Suit is a high-end, body-length swimsuit that was launched on February 13,2008. When 17 world records fell at the December 2008 European Short Course Championships in Croatia, many believed a modification in the rules surrounding swimsuits was necessary. The FINA Congress, the international governing board...
How can I resolve this case study by using R studio from chapter 10 , book...
How can I resolve this case study by using R studio from chapter 10 , book business statistics written by Jaggia/Kelly third edition.can you please resolve for me CASE STUDY 10.3 Paige Thomsen is about to graduate from college at a local university in San Francisco. Her options are to look for a job in San Francisco or go home to Denver and search for work there. Recent data report that average starting salaries for college graduates is $48,900 in...
Can you resolve this case study by using R studio from chapter 10 , book business...
Can you resolve this case study by using R studio from chapter 10 , book business statistics written by Jaggia/Kelly third edition.can you please resolve for me CASE STUDY 10.2 The Speedo LZR Racer Suit is a high-end, body-length swimsuit that was launched on February 13,2008. When 17 world records fell at the December 2008 European Short Course Championships in Croatia, many believed a modification in the rules surrounding swimsuits was necessary. The FINA Congress, the international governing board for...
Can You please Answer the question using R studio and R cloud Telomeres are complexes of...
Can You please Answer the question using R studio and R cloud Telomeres are complexes of DNA and protein that cap chromosomal ends. They consist of the same short DNA sequence TTAGGG repeated over and over again. They tend to shorted with cell divisions and with advancing cellular age, which will lead to chromosome instability or apoptosis (programmed cell death). Eukaryotic cells have the ability to reverse telomere shortening by expressing telomerase, an enzyme that extends the telomeres of chromosomes....
This case study is from the Corporate Finance book, chapter 8 in the eBook (pg. 653...
This case study is from the Corporate Finance book, chapter 8 in the eBook (pg. 653 in the hard copy, page 261 in eBook). The case study will require you to perform a financial analysis and make some capital investment decisions for Bethesda Mining Company. You will need to prepare various operating cash flows in order to perform your analysis and make a recommendation. The case study is also stated below. Please complete the case study using the excel template...
General This case study is from the Corporate Finance book, chapter 8 in the eBook (pg....
General This case study is from the Corporate Finance book, chapter 8 in the eBook (pg. 653 in the hard copy, page 261 in eBook). The case study will require you to perform a financial analysis and make some capital investment decisions for Bethesda Mining Company. You will need to prepare various operating cash flows in order to perform your analysis and make a recommendation. The case study is also stated below. Please complete the case study using the excel...
Using R Studio Use the two iid samples. (You can copy and paste the code into...
Using R Studio Use the two iid samples. (You can copy and paste the code into R). They both come from the same normal distribution. X = c(-0.06, 1.930, 0.608 -0.133,0.657, -1.284, 0.166, 0.963, 0.719, -0.896) Y = c(0.396, 0.687, 0.809, 0.939, -0.381, -0.042, -1.529, -0.543, 0.758, -2.574, -0.160, -0.713, 0.311, -0.515, -2.332, -0.844, -0.942, 0.053, 0.066, 0.942, -0.861, -0.186, -0.947, -0.110, 0.634, 2.357, 0.201, -0.428, -1.661, 0.395) (a) Report 95% confidence interval for the mean of X. Should we...
I have an assignment that must be done on R/R studio R/RStudio - Chapter 4- Correlation...
I have an assignment that must be done on R/R studio R/RStudio - Chapter 4- Correlation and Regression Step 1 – Download and Install the R/RStudio software on your computer. The link and instructions to do that are on Blackboard under Course Information. Step 2 – Access the Data Sets in MyLab through StatCrunch. In chapter 4, a data set called “Used BMW prices 2017” is what we’ll use. Step 3 – When you open the data set in StatCrunch,...
the Video Case topic in every chapter is different from the book. The discussion questions are...
the Video Case topic in every chapter is different from the book. The discussion questions are the same. why is this or what am i doing wrong.. textbook solutions Foundations of Business 6e
Use R programming to resolve this; can you please provide details on the code? A) Create...
Use R programming to resolve this; can you please provide details on the code? A) Create a dataframe – comparativeGenomeSize with the following vectors: > organism<-c("Human","Mouse","Fruit Fly", "Roundworm","Yeast") > genomeSizeBP<-c(3000000000,3000000000,135600000,97000000,12100000) > estGeneCount<-c(30000,30000,13061,19099,6034) B) Print the organism and estGeneCount for Human and fruitfly.(1) C) Add a column to this data frame calculating base pairs per gene. To do this, write a function “genedensity” that takes as arguments the genomesizeBP and estimatedGeneCount information, and calculates from this the estimated bp per gene....
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT