Skip to main content
The table needs to be inputed into R in order to answer the following questions. Thank you



ANSWER

We can easily calculate the expected cell counts Eij using the Minitab command chisq, as shown below.
MTB > read c1-c4
DATA> 12 8 31 41
DATA> 307 246 439 245
DATA> end
2 rows read.
MTB > chisq c1-c4
Expected counts are as below observed counts
C1     C2     C3     C4     Total
1       12    8      31    41        92
22.08   17.58     32.54    19.80
2      307 246 439   245 1237
296.92 236.42 437.46 266.20
Total          319   254 470 286 1329
ChiSq = 4.604 + 5.223 + 0.072 + 22.704 + 0.342 + 0.388 + 0.005 + 1.689 = 35.028
df = 3
MTB > cdf 35.028;
SUBC> chisq 3.
35.0280 1.0000
The p-value is essentially zero, so the evidence of a relationship is very strong. The same computation is shown below in S-PLUS, using the function chisq.test().
> x_c(12,8,31,41,307,246,439,245)
> x_matrix(x,4,2,byrow=T)
> chisq.test(x)
Pearson’s chi-square test without Yates’ continuity correction
data: x
X-squared = 35.0285, df = 3, p-value = 0
Through the X2 test for independence, we have demonstrated beyond a reasonable doubt that a relationship exists between cholesterol and CHD.
It would make sense to estimate the conditional probabilities of CHD within the four cholesterol groups. To do this, we estimate P(Y = i|Z = j).
P(Y = i|Z = j) = P(Y = i, Z = j) / P(Z = j)
[(nij/n++) / (n+j/n++)] = nij / n+j
12/319 = .038
8/254 = .031
31/470 = .066
41/286 = .143
307/319 = .962
246/254 = .969
439/470 = .934
245/286 = .857
The risk of CHD appears to be essentially constant for the 0–199 and 200–219 groups.
a test of independence for the 2 × 2 table
12
8
307
246
yields X 2 = 0.157, p-value = .69.
For an I × J table, the usual X 2 or G 2 test for independence has
(IJ − 1) − (I − 1) − (J − 1) = (I − 1)(J − 1)

Comments

  1. https://www.chegg.com/homework-help/questions-and-answers/2-survey-find-main-causes-lateness-factory-s-work-force-random-sample-200-employees-late-w-q38226745

    ReplyDelete

Post a Comment

Popular posts from this blog

Osmosis Data Sheet

Data Sheet: Activity - Osmosis Name Course Date Activity Data Code       Procedure I -Test Solution 1: Water Complete the tablesand questions below using your data and information found under the Background tab Data Table I Note: Difference in Final Volumes = Final Volume of Test Sol - Final Volume of Water Trial Starting Volume of Test Solution (L) Starting Volume of Water (L) Final Volume of Test Solution (L) Final Volume of Water (L) Difference in Final Volumes (L) 1 1.28 1.75 1.51 1.52 -0.01 2 1.28 2.00 1.64 1.64 0 Observations and Questions [1] Given that the final heights (and volumes) are the same for the water and test solution, what can you...

Pseudocode - painting a wall

My pseudocode from Module Two: Pseudocode – Painting a Wall MEASURE wall-length MEASURE wall width CALCULATE wall area DETERMINE amount of paint needed for wall-size PURCHASE desired paint and tools (brushes, rollers, pan, etc.) PREPARE work area and tools START painting wall END when painting is complete CLEAN work area and tools STORE tools and any leftover pa​‌‌‌‌‌‌‍‍‍‌‌‍‍‍‌‍‌‍‍​int
Two friends A and B (each weighing 40 kg) are sitting on a frictionless platform some distance d apart. A rolls a ball of mass 4 kg on the platform towards B which B catches. Then B rolls the ball towards A and A catches it. The ball keeps on moving back and forth between A and B. The ball has a fixed speed of 5 m/s on the platform. (a) Find the speed of A after he rolls the ball for the first time. (b) Find the speed of A after he catches the ball for the first time. (c) Find the speeds of A and B after the ball has made 5 round trips and is held by A. (d) How many times can A roll the ball? (e) Where is the center of mass of the system "A+B+ball" at the end of the nth trip? ANSWER: (a) CASE - 1  => Total momentum of the man A and the ball will remain constant Therefore , 0 = 4 x 5 - 40 x v v = 0.5 m/s towards left (b) CASE - 2  => When B catches the ball , the momentum between the B and the ball will remain constant. 4 x 5 = 44v v =...