Question

Appreciate if you can answer this ONE QUESTION COMPLETELY and give me a detailed working with explanation for me to understand. Once completed so long as my doubts are cleared and the solutions are correct, I will definitely vote up. Some of the question are similiar to take a look carefully before you answer as it's very important for me.

Thank you.

Question 5 The management team of a US-based airline is considering making changes to its checked-in baggage allowance policy. As an information gathering exercise, the team decides to record the weight (in kilograms) for many samples of luggage items checked in on the various flights during the same week. Below is a random sample data set (sample size-8): 20.5 25.123.3 22.1 17.4 16.9 20.9 22.4 (a) Using MS Excel Analysis ToolPak, generate and show a summary of the following descriptive statistics: Mean, Median, Standard deviation, Variance, Skewness, Range (2 marks) (b) Using MS Excel function, determine the 80h percentile statistic. You need to show a (2 marks) screenshot of the Excel output results. Use R commands to compute the following descriptive statistics: Mean, Median, Standard deviation, Variance, First guatile, Third quartile, (c) Interquatile nge, 80th percentile You are required to show screenshots of the related R commands and output results. (4 marks)

0 0
Add a comment Improve this question Transcribed image text
Answer #1

(a)

To generate descriptive statistics for these scores, execute the following steps.

1. On the Data tab, in the Analysis group, click Data Analysis.

Show Detail Data Analysis What-If Forecast Group Ungroup Subtotale beta Analysis Sheet Forecast Outline Analysis

2. Select Descriptive Statistics and click OK.

Data Analysis Analysis Tools OK Anova: Single Factor Anova: Two-Factor With Replication Anova: Two-Factor Without Replication Correlation Covariance Descriptive Statistics Exponential Smoothing F-Test Two-Sample for Variances Fourier Analysis Histogram Cancel Help

3. Select the range A2:A8 as the Input Range.

4. Select cell C1 as the Output Range.

5. Make sure Summary statistics is checked.

Descriptive Statistics Input OK Cancel Heip Grouped By: O Columns Rows Labels in first row Output options O Output Range: $C$1 New Worksheet Ply: New Workbook Summary statistics fi: Confidence Level for Mean: -195 196- Kth Largest Kth Smallest

6. Click OK.

Result:

Column1 1 20.5 2 25.1 3 23.3 4 22.1 5 17.4 6 16.9 7 20.9 8 22.4 9 Mean Standard Error Median Mode Standard Deviation 2.80955004 21.075 0.993325943 21.5 #N/A Sample Variance 7.893571429 0.621780544 -0.36910833 8.2 16.9 Kurtosis Skewness Range Minimum Maximum Sum Count 10 12 13 14 15 25.1 168.6

You can get all the descriptive statistics in the output.

(b)

Write the below command in any cell of the excel. Note the data is from the cell A1 to A8.

=PERCENTILE(A1:A8, 0.8)

You will get the output as 22.94

-PERCENTILE(A1:A8,0.8) 1 20.5 2 25.1 3 23.3 4 22.1 17,4 616.9 22.94 7 20. 8 22.4

(c)

Run the below commands in R to get the descriptive statistics. The output is shown below.

x-c(20.5,25 . 1,23 .3 ,22.1,17.4,16 . 9, 20. 9, 22, 4) summary(X) #Give the 5 point summary sd(x) #Store the value of data 2 #Standard deviation #Variance 4 var(x) 5 summary(x)[5] - summary(x)C2] IQR quantile(x,0.8) #80th percentile 7

On running the command, we get the below output.

> x = c(20.5,25.1,23.3,22.1,17.4,16.9,20.9,22.4) #Store the value of data

> summary(x) #Give the 5 point summary
Min. 1st Qu. Median Mean 3rd Qu. Max.
16.90 19.73 21.50 21.08 22.62 25.10

> sd(x) #Standard deviation
[1] 2.80955

> var(x) #Variance
[1] 7.893571

> summary(x)[5] - summary(x)[2] #IQR = 3rd quartile - 1st Quartile
IQR
2.89

> quantile(x,0.8) #80th percentile
80%
22.94
>

Add a comment
Know the answer?
Add Answer to:
Appreciate if you can answer this ONE QUESTION COMPLETELY and give me a detailed working with...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
Active Questions
ADVERTISEMENT