The data set Pain contains hypothetical data for a clinical trial of a drug therapy to control pain. The clinical trial investigates whether adverse responses increase with larger drug doses. Subjects receive either a placebo or one of four drug doses (1, 2, 3, or 4 units). An adverse response is recorded as Adverse = 'Yes'; otherwise, it is recorded as Adverse = 'No'. The number of subjects for each drug dose and response combination is contained in the variable Count. (a) Construct a contingency table that corresponds to the data set created above. What type of variable is Dose? (B) Compute the sample proportions of adverse responses at each dose level. Do you observe any trend in the proportion of adverse responses with respect to dose level? (C) Conduct a Cochran-Armitage trend test at the 5% significance level to address the interests of the trial.

MATLAB: An Introduction with Applications
6th Edition
ISBN:9781119256830
Author:Amos Gilat
Publisher:Amos Gilat
Chapter1: Starting With Matlab
Section: Chapter Questions
Problem 1P
icon
Related questions
Question
100%
The data set Pain contains hypothetical data for a clinical trial of a drug therapy to control pain. The clinical trial investigates whether adverse responses increase with larger drug doses. Subjects receive either a placebo or one of four drug doses (1, 2, 3, or 4 units). An adverse response is recorded as Adverse = 'Yes'; otherwise, it is recorded as Adverse = 'No'. The number of subjects for each drug dose and response combination is contained in the variable Count. (a) Construct a contingency table that corresponds to the data set created above. What type of variable is Dose? (B) Compute the sample proportions of adverse responses at each dose level. Do you observe any trend in the proportion of adverse responses with respect to dose level? (C) Conduct a Cochran-Armitage trend test at the 5% significance level to address the interests of the trial.
This dataset captures information regarding the administration of differing doses and their corresponding adverse effects. The data structure is set up for analysis using SAS (Statistical Analysis System). 

### Data Description:

Below is the dataset provided:

```sas
data Pain;
input Dose Adverse $ Count @@;
cards;
0 Yes 6 0 No 26
1 Yes 7 1 No 26
2 Yes 9 2 No 23
3 Yes 14 3 No 18
4 Yes 23 4 No 9
;
run;
```

### Explanation:

- **data Pain;** 
  This line initiates a new dataset called "Pain".

- **input Dose Adverse $ Count @@;**
  Defines the structure of the input data.
  - **Dose**: The dose level administered.
  - **Adverse $**: A character variable indicating whether an adverse effect was observed ("Yes" or "No").
  - **Count**: The number of occurrences for each combination of Dose and Adverse.

- **cards;**
  This indicates that the following lines contain the raw data.

### Dataset Content:

The actual data entries are listed below:

| Dose | Adverse | Count |
|------|---------|-------|
| 0    | Yes     | 6     |
| 0    | No      | 26    |
| 1    | Yes     | 7     |
| 1    | No      | 26    |
| 2    | Yes     | 9     |
| 2    | No      | 23    |
| 3    | Yes     | 14    |
| 3    | No      | 18    |
| 4    | Yes     | 23    |
| 4    | No      | 9     |

- **Dose 0:** 6 times adverse effect observed, 26 times no adverse effect.
- **Dose 1:** 7 times adverse effect observed, 26 times no adverse effect.
- **Dose 2:** 9 times adverse effect observed, 23 times no adverse effect.
- **Dose 3:** 14 times adverse effect observed, 18 times no adverse effect.
- **Dose 4:** 23 times adverse effect observed, 9 times no adverse effect.

### Conclusion:

This dataset can be further analyzed to study the relationship between the dosage levels and the frequency of adverse effects. The
Transcribed Image Text:This dataset captures information regarding the administration of differing doses and their corresponding adverse effects. The data structure is set up for analysis using SAS (Statistical Analysis System). ### Data Description: Below is the dataset provided: ```sas data Pain; input Dose Adverse $ Count @@; cards; 0 Yes 6 0 No 26 1 Yes 7 1 No 26 2 Yes 9 2 No 23 3 Yes 14 3 No 18 4 Yes 23 4 No 9 ; run; ``` ### Explanation: - **data Pain;** This line initiates a new dataset called "Pain". - **input Dose Adverse $ Count @@;** Defines the structure of the input data. - **Dose**: The dose level administered. - **Adverse $**: A character variable indicating whether an adverse effect was observed ("Yes" or "No"). - **Count**: The number of occurrences for each combination of Dose and Adverse. - **cards;** This indicates that the following lines contain the raw data. ### Dataset Content: The actual data entries are listed below: | Dose | Adverse | Count | |------|---------|-------| | 0 | Yes | 6 | | 0 | No | 26 | | 1 | Yes | 7 | | 1 | No | 26 | | 2 | Yes | 9 | | 2 | No | 23 | | 3 | Yes | 14 | | 3 | No | 18 | | 4 | Yes | 23 | | 4 | No | 9 | - **Dose 0:** 6 times adverse effect observed, 26 times no adverse effect. - **Dose 1:** 7 times adverse effect observed, 26 times no adverse effect. - **Dose 2:** 9 times adverse effect observed, 23 times no adverse effect. - **Dose 3:** 14 times adverse effect observed, 18 times no adverse effect. - **Dose 4:** 23 times adverse effect observed, 9 times no adverse effect. ### Conclusion: This dataset can be further analyzed to study the relationship between the dosage levels and the frequency of adverse effects. The
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 6 steps with 17 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
MATLAB: An Introduction with Applications
MATLAB: An Introduction with Applications
Statistics
ISBN:
9781119256830
Author:
Amos Gilat
Publisher:
John Wiley & Sons Inc
Probability and Statistics for Engineering and th…
Probability and Statistics for Engineering and th…
Statistics
ISBN:
9781305251809
Author:
Jay L. Devore
Publisher:
Cengage Learning
Statistics for The Behavioral Sciences (MindTap C…
Statistics for The Behavioral Sciences (MindTap C…
Statistics
ISBN:
9781305504912
Author:
Frederick J Gravetter, Larry B. Wallnau
Publisher:
Cengage Learning
Elementary Statistics: Picturing the World (7th E…
Elementary Statistics: Picturing the World (7th E…
Statistics
ISBN:
9780134683416
Author:
Ron Larson, Betsy Farber
Publisher:
PEARSON
The Basic Practice of Statistics
The Basic Practice of Statistics
Statistics
ISBN:
9781319042578
Author:
David S. Moore, William I. Notz, Michael A. Fligner
Publisher:
W. H. Freeman
Introduction to the Practice of Statistics
Introduction to the Practice of Statistics
Statistics
ISBN:
9781319013387
Author:
David S. Moore, George P. McCabe, Bruce A. Craig
Publisher:
W. H. Freeman