Skip to main content

Section 25.2 Investigation 5.1A: Newspaper Credibility Decline

Exercises 25.2.1 The Study

With the proliferation of the Internet and 24-hour cable news outlets, it has become much easier for people to hear much more information, much more quickly. However, this has led to speculation that news organizations attempt to convey information before it has been properly verified in an effort to feed our impatience.
Newspaper credibility illustration
A β€œmedia believability survey” has been conducted since 1985 (under the direction of the Pew Research Center for the People & the Press since 1996), and research has focused on whether different news organizations (e.g., USA Today, NPR, MSNBC) have been losing credibility over time.
The survey is based on telephone interviews among a national sample of adults 18 years or older living in the continental United States. One of the questions asked is
Please rate how much you think you can BELIEVE each organization on a scale of 4 to 1. On this four point scale, β€œ4” means you can believe all or most of what the organization says. β€œ1” means you believe almost nothing of what they say. How would you rate the believability of (READ ITEM: ROTATE LIST) on this scale of 4 to 1?
The interviewer then asked this question for several different news organizations.

1. Rotate the Organization List.

Why is it important for the interviewer to rotate the list of organizations?
Solution.
Rotating the list helps prevent order effects. Without rotation, organizations listed earlier could be over-selected or rated differently simply because of position in the interview sequence.

2. Include Cell Phone Interviews.

Since 2010, cell phone interviewing has been included. Why is that an important consideration?
Solution.
Including cell phones reduces coverage bias. If only landlines are sampled, important groups (especially younger adults and cell-only households) are underrepresented.
When asked about β€œThe daily newspaper you are most familiar with,” the percentage distribution of the 1,004 responses in June, 2006 was:
Believe all or almost all – 4 3 2 Believe almost nothing – 1 Can’t Rate
18% 37% 26% 12% 7.1%

3. Convert Percentages to Counts.

Convert these percentages into observed counts among those who felt they could rate their daily newspaper. In other words, eliminate the β€œcan’t rate” folks from consideration.
Solution.
About 92.9% could rate the paper, so the count of raters is approximately \(1004(0.929) \approx 933\text{.}\) Converting the category percentages among raters gives counts of about 181 (rating 4), 371 (rating 3), 261 (rating 2), and 120 (rating 1).

4. Compare Response Variable Types.

How does the response variable in this study differ to that in Investigation 5.1?
Solution.
Here the response variable is categorical with four ordered levels (an ordinal scale). In Investigation 5.1, the response variable was binary categorical (female/male).
A similar study was also done in 1998 (with 922 respondents able to rate their daily newspaper) and in 2012 (922 able to rate). A corresponding two-way table of counts across the three years is shown below.

5. Complete 2006 Column.

Enter your values for 2006.
Response \ Year 1998 2006 2012
Believe almost all - 4 265 183
3 353 342
2 235 268
Believe almost nothing - 1 69 129
Total 922 922
Solution.
The completed 2006 column is 181, 371, 261, and 120, with total 933.

6. Track Category 4 Over Time.

How have the percentages who believe β€œall or almost all” (among those who can rate) changed over time?
Solution.
The percentage declines from about \(265/922 \approx 28.7\%\) in 1998 to \(181/933 \approx 19.4\%\) in 2006, then is about \(183/922 \approx 19.8\%\) in 2012. So there is a large drop from 1998 to 2006 and little change afterward.

7. Overall Proportion for Rating 4.

What percentage of the individuals across these three studies rated the believability of their daily paper as a 4?
Solution.
\((265+181+183)/(922+933+922) = 629/2777 \approx 0.2265\text{,}\) so about 22.7%.

8. Expected Count for 2006 Rating 4.

If the proportion who believe all or almost all of what they read was the same in all three populations, how many in the 2006 sample would you expect to believe all or almost all of what they read?
Solution.
Using expected count = (row total)(column total)/(table total): \((629)(933)/2777 \approx 211.3\text{.}\)

9. Expected Count for 2012 Rating 1.

What is the expected number of 1 raters in 2012?
Solution.
The rating-1 row total is \(69+120+129=318\text{,}\) so expected in 2012 is \((318)(922)/2777 \approx 105.6\text{.}\)

Definition: Expected Count.

In general, we can calculate the expected count for each cell by considering the row and column totals corresponding to that cell. This ensures that the conditional distribution of the response variable is the same in each category of the explanatory variable.
\(\text{Expected count} = \frac{\text{Row total} \times \text{Column total}}{\text{Table total}}\)

10. State Hypotheses.

State the null and alternative hypotheses for assessing whether the sample data provide strong evidence that the distribution of responses differs among the three years.
Hint.
How would you do this with symbols? What could you say in words?
Solution.
\(H_0\text{:}\) The population distribution of believability ratings (4, 3, 2, 1) is the same for 1998, 2006, and 2012.
\(H_a\text{:}\) At least one year’s population distribution differs.

Chi-square Test Statistic.

We will use the same Chi-squared statistic to compare the observed and expected counts, just now allowing for more than two categories for the response variable,
\begin{equation*} \chi^2 = \sum_{i=1}^{r}\sum_{j=1}^{c} \frac{(observed_{ij}-expected_{ij})^2}{expected_{ij}} \end{equation*}
where \(r\) = number of rows and \(c\) = number of columns in the two-way table.
The degrees of freedom for the chi-squared test statistic with \(r\) rows and \(c\) columns is \(df = (r - 1)(c - 1)\text{.}\)
We will consider this distribution valid as long as at least 80% of expected counts are at least 5 and all are at least one.

11. Check Technical Conditions.

Are the technical conditions met to use the chi-squared distribution for your table?
Solution.
Yes. The expected counts are all much larger than 5, so the chi-square approximation is appropriate.

Technology Detour β€” Chi-squared Tests.

Hint 1. Applet Instructions
  • Paste either the raw data (press Use Data) or the two-way table (press Use Table) into the Sample data box, using one word category names.
  • Check the Show X^2 Output box.
The applet reports the observed \(X^2\) value, df, and cell contributions. (You can expand this window by dragging out the lower right corner. Check the Show table box to see the observed counts.)
Sample data input window in the applet
Show X squared output checkbox in the applet
Show table checkbox in the applet
Hint 2. R Instructions
  • If you have the counts for the two-way table, can pass the table using the matrix command:
    > spocktable = matrix(c(119, 235, 197, 533, 118, 287, 77, 149, 30, 81, 149, 403, 86, 511), ncol=7)
    > chisq.test(spocktable)
  • For the raw data (e.g., in spock), create and pass in the frequency table, e.g.,
    > chisq.test(table(spock))
Use chisq.test(data)$expected and chisq.test(data)$residuals for more output.
Hint 3. JMP Instructions
  • The data must be in β€œstacked format” (one column with the EV categories, one column with the RV categories). Each row can represent an observation or each row can represent a unique combination of variables and then you can add a column of counts (β€œtallied”).
  • Choose Analyze > Fit Y by X
  • Specify the response variable (Y, columns) and the explanatory variable (X, factor)
    • If the data is tallied, specify the column of counts in the Freq box.
  • Press OK. The chi-square statistic we calculated above is in the Pearson row.
Fit Y by X role assignment in JMP

12. Compute Test Statistic and p-value.

Use technology to calculate the chi-squared statistic, verify the degrees of freedom, and calculate the p-value. Do you reject or fail to reject the null hypothesis?
Solution.
A typical output gives \(\chi^2 \approx 45.22\) with \(df=(4-1)(3-1)=6\) and a very small p-value (\(p < 0.0001\)). We reject the null hypothesis and conclude that the believability distribution differs by year.

Comparison to two-sample \(z\)-test.

If we collapse the above table to focus on the β€œlargely believable” (3 or 4) and β€œnot largely believable” (1 or 2) breakdown, we obtain:
Response\Sample 2012 sample 1998 sample Total
Largely believable 525 618 1143
Not largely believable 397 304 701
Total 922 922 1844

13. Chi-squared Test on 2x2 Table.

Use technology to carry out a chi-squared test to decide whether the difference in the population proportions giving a largely believable rating differed significantly between the two years. Report the standardized statistic, degrees of freedom, and p-value.
Solution.
The chi-square test gives about \(\chi^2 \approx 19.9\) with \(df=1\) and \(p < 0.0001\text{,}\) indicating a statistically significant difference between years.

14. Two-proportion \(z\)-test Comparison.

Now carry out a two-sided two-proportion \(z\)-test for this table. Report the standardized statistic and p-value. How do the p-values compare? What do you think is the relationship between the standardized statistics?

Aside: Theory-Based Inference Applet.

Solution.
The two-proportion test gives about \(z \approx -4.46\) with a two-sided \(p < 0.0001\text{.}\) The p-values agree closely with the chi-square test, and the statistics satisfy \(z^2 \approx \chi^2\text{.}\)

Discussion.

The chi-squared procedure can be used to compare two or more proportions. When there are only two proportions, the procedure is equivalent to a two-sided \(z\)-test for proportions from Chapter 3. The chi-squared test statistic is equal to \(z^2\) and the chi-squared p-value is equal to the two-sided p-value for the two-sample \(z\)-test. If the alternative hypothesis is two-sided, you can use either procedure. If the alternative hypothesis is one-sided, then you should carry out the two-sample \(z\)-test to obtain the one-sided p-value. If there are more than two proportions, then you must use the chi-squared procedure, which will only assess whether or not at least one population proportion differs from the others.
For a \(2\times 2\) two-way table, another alternative is Fisher’s Exact Test as you learned in Chapter 3. It is always appropriate to carry out Fisher’s Exact Test (if you are willing to fix the row and column totals), though it may be a bit less convenient with huge sample sizes (which becomes less of an issue with each new computer chip).
However, of all three of these procedures, the two-sample \(z\)-procedure is the only one that also enables us to calculate a confidence interval to estimate the magnitude of the difference in the two population proportions.
Keep in mind that chi-squared tests look for evidence of any association. They don’t care which is the explanatory and which is the response and they don’t look for specific types of association, like time trend.

Subsection 25.2.2 Practice Problem 5.1A

In February of 1993, NBC News admitted that it staged the explosion of a General Motors truck during a segment of the program β€œDateline NBC” in November of 1992. The segment included crash footage that explosively showed how the gas tanks of certain old GM trucks could catch fire in a sideways collision. In a nationwide poll of adults (Times Mirror News Interest Index) conducted in August, 1989, 1507 respondents gave NBC news the following believability ratings.
Believe – 4 3 2 Cannot believe – 1 Can’t rate
32% 47% 14% 2% 5%
The same poll conducted Feb. 12-27, 1993 saw 2001 respondents give the following results:
Believe – 4 3 2 Cannot believe – 1 Can’t rate
31% 42% 18% 6% 3%

Checkpoint 25.2.3. Compare Believability Distributions.

Is the difference in the distribution of believability ratings statistically significant between these two years?

Checkpoint 25.2.4. Interpret Causation Claim.

Is this convincing evidence that the General Motors explosion caused a decrease in the believability of NBC News?
You have attempted of activities on this page.