Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Applied Statistics Expert

1. Waist-to-hip ratio was measured on 8 men just before they entered a weight loss program (time 1) and again 6 months after the program (time 2).  The results are below.

          Subject           1          2         3          4         5          6         7          8

          Time 1          1.03     0.99     1.18     0.82     1.02     1.05     1.06     0.82

          Time 2          1.00     1.02     1.12     0.78     1.06     1.00     1.08     0.76

 

data one;

    input WHR1 WHR2;

    diff = WHR1 - WHR2;

Datalines;

1.03 1.00

0.99 1.02

1.18 1.12

0.82 0.78

1.02 1.06

1.05 1.00

1.06 1.08

0.82 0.76

;

run;

a. Calculate the difference for each subject (as time 1 value minus time 2 value), then calculate the mean and standard deviation of these differences.  You can do this however you like.

b. Using the information from part (a), "by hand", calculate a 90% confidence interval for the difference of the means for the two time periods (i.e., for the mean difference).

c. We want to use a paired t-test, at a = .05, to test if the mean waist-to-hip ratio is smaller at time 2 than at time 1 (i.e., test if the program is effective).  Use PROC TTEST to obtain the test statistic and p-value.  Turn in the printout.

d. A colleague looks at the printout and decides that we have proven that the program is not effective.  Do you agree with his conclusion?  Why or why not?

2. The number of heart beats in a 5-minute period are recorded for 25 women not using a certain drug, and 16 women using this drug.

No drug:       293   297   300   302   306   311   312   314   318   320   322   323   324

                   324   326   327   331   333   335   339   342   345   345   351   356

    Drug:       330   331   335   337   339   343   346   349

                   350   358   364   369   375   387   398   403

data two;

    input drug $ beats @@;

datalines;

No 293 No 297 No 300 No 302 No 306 No 311 No 312 No 314

No 318 No 320 No 322 No 323 No 324 No 324 No 326 No 327

No 331 No 333 No 335 No 339 No 342 No 345 No 345 No 351 No 356

Yes 330 Yes 331 Yes 335 Yes 337 Yes 339 Yes 343 Yes 346 Yes 349 Yes 350 Yes 358 Yes 364 Yes 369 Yes 375 Yes 387 Yes 398 Yes 403

;

run;

We want to test, at a = .05, if there is a difference in the mean number of beats for the two groups.

a. Write the null and alternative hypotheses.

b. Analyze the data using PROC TTEST, and turn in the printout.  From this, you will first have to test if the population variances are equal.  Give the p-value of this test, then briefly state which t-test (i.e., 'Equal' or 'Unequal') is appropriate to compare the means.

c. State the test statistic and p-value of the appropriate t-test, and interpret the result. 

3. Use the REACTIONTIME data set.  We want to see if the mean reaction time is faster for males than for females.

a. Using a = .05, go through the same steps as in problem #2.  Be sure to make the necessary adjustment for this one-sided test.

b. Using the sample sizes and standard deviations from the PROC TTEST printout, calculate the pooled estimate of variance,.

4. Again use the REACTIONTIME data.  We want to test, at a = .05, if the average reaction time is the same for the three types of stimuli.

a. In words (not symbols), write the null and alternative hypotheses.

b. Use PROC ANOVA to analyze this data, and include a corresponding Tukey multiple comparison procedure (use the LINES option).  Turn in the printout.

c. State the p-value of the F-test, and state what we know only from this test.

d. Summarize the results of the Tukey multiple comparison procedure.

e. State MSERROR, and say what we can estimate with this.  Be specific to this situation.

5. The vocabulary size is measured for 11 4-year-old children.  The results are below.  We want to test, at a = .05, if the population median differs from 450.

149    279    339    388    418    421    441    460    474    487    492

a. Write the null and alternative hypotheses.

b. Perform a sign test, "by hand".  Calculate the test statistic, find the p-value (using the Binomial distribution), and interpret the result of the test.

c. Calculate the test statistic for the Wilcoxon signed rank test, "by hand".  You do not have to compare this to a rejection region, and you do not have to interpret the result (yet).

d. Run PROC UNIVARIATE to carry out both tests above, and turn in the printout.  Give the p-value of the Wilcoxon signed rank test, and now interpret the result.

data five;

    input words @@;

datalines;

149 279 339 388 418 421 441 460 474 487 492

;

run;

e. Demonstrate how the test statistics you calculated in parts (b) and (c) relate to the statistics M and S you get from SAS.

6. In problem #4 of homework #5, we have the velocity of fastballs thrown by 10 college baseball pitchers.  This is data taken in 2012, and the observations are below.

81.9    77.7    80.3    83.1    89.5    85.4    87.9    88.9    78.1    84.9

Suppose in 1992, the same variable was measured on a sample of 7 college pitchers.  The observations are below.

          75.6    77.3    82.1    74.1    81.8    76.6    80.3

We want to test, at a = .10, if there is a difference in the median velocity for the two years.

a. Calculate the test statistic of the Wilcoxon rank sum test, "by hand".  You do not have to compare this to a rejection region, and you do not have to interpret the result (yet).

b. Use PROC NPAR1WAY (with the EXACT subcommand) to calculate the test statistic.  Turn in the printout, state the best p-value to use for the test, and now interpret the result.

data six;

    input year n @@;

    do i = 1 to n;

    input velocity @@;

    output;

    end;

    drop i n;

datalines;

2012  10   81.9  77.7  80.3  83.1  89.5  85.4  87.9  88.9  78.1  84.9

1992   7   75.6  77.3  82.1  74.1  81.8  76.6  80.3

;

run;

7. Again use the REACTIONTIME data. We want to test, at a = .05, if the median reaction time is the same for the three types of stimuli.  However, we now want to limit our analysis to females age 65 and older. Use PROC NPAR1WAY (for this analysis do not use the EXACT subcommand) to perform a Kruskal-Wallis test. Turn in the printout, and interpret the result of the test.  You will find it useful to include a statement like:

       where sex = 'female' and age >= 65;

Applied Statistics, Statistics

  • Category:- Applied Statistics
  • Reference No.:- M91040185
  • Price:- $40

Priced at Now at $40, Verified Solution

Have any Question?


Related Questions in Applied Statistics

Business data analysis facts from figures assignment

BUSINESS DATA ANALYSIS: FACTS FROM FIGURES Assignment - Question 1 - Private capital expenditure for 12 successive quarters are presented in the following table: Quarter Millions     1 31,920 2 25,120 3 30,350 4 24,650 5 ...

Business statistics project -problem description the

BUSINESS STATISTICS PROJECT - Problem Description: The blockchain is a decentralized ledger of all transactions across a peer-to-peer network. Using this technology, participants can confirm transactions without a need f ...

Part a -question 1 - true or false in data collection the

Part A - Question 1 - True or False: In data collection, the most common technique to ensure proper representation of the population is to use a random sample. True False Question 2 - Most analysts focus on the cost of H ...

Business analytics and statistics research report

Business Analytics and Statistics Research Report Assignment - This assignment is based on fictional data - do not contact the company listed below. You are creating a business report for the CEO of a retail company call ...

Applied statistics - regression assignmentin this

Applied Statistics - Regression Assignment In this assignment you are expected to set up a regression equation, run that regression and interpret and evaluate the results. You will need to carefully state all null hypoth ...

Go to the webliography source for the national cancer

Go to the Webliography source for the National Cancer Institute's Surveillance, Epidemiology, and End Results (SEER) Program. In the Fast Stats, create your own cancer statistical report, "Stratified by Data Type," and u ...

Quantitative methods in health statistical analysis report

Quantitative Methods in Health Statistical Analysis Report - Question 1 - Are you a Lark or an Owl? Studies indicate that about 10% of us are morning people (Larks) while 20% are evening people (Owls) and the rest are no ...

Construct a regression model for predicting total charges

Construct a regression model for predicting total charges from length of stay for DRG 105. a. State the null and alternative hypotheses and alpha level. b. Prepare a scatter diagram with the regression line for the two v ...

Go to the website of ahrqs website titled advances in

Go to the website of AHRQ's website titled Advances in Patient Safety: From Research to Implementation located in the Webliography and select a specific research article. Bring back to the class, at minimum, the followin ...

A company produces labeled packaging material and the

A company produces labeled packaging material and the company intends to buy a new machine for shaping and labeling. The company has been approached by two different companies and the production manager did a test on the ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As