Monday, November 16, 2015

Internet use and religious affiliation in Europe

A few years ago I wrote a paper about Internet use and religious affiliation using data from the General Social Survey (GSS).  After controlling for things like education, income, and religious upbringing, I found that people who use the Internet more are less likely to have a religious affiliation; that is, they are more likely to be "Nones".  I made an argument for why I think this effect is plausibly causative and, if so, I estimated that it accounts for about 20% of the decrease in religious affiliation in the U.S. between 1990 and 2010.  Last April it got some media attention (including this brief discussion on Fox News); here is the blog post I wrote about it at the time.

Since then, I have been planning to replicate the study using data from the European Social Survey, but I didn't get back to it until a few weeks ago.  I was reminded about it because they recently released data from Round 7, conducted in 2014.  I am always excited about new data, but in this case it doesn't help me: in Rounds 6 and 7 they did not ask about Internet use.

But they did ask in Rounds 1 through 5, collected between 2002 and 2010.  So that's something.  I downloaded the data, loaded it into Pandas dataframes, and started cleaning, validating, and doing some preliminary exploration.  This IPython notebook shows what the first pass looks like.

In the interest of open, replicable science, I am posting preliminary work here, but at this point we should not take the results too seriously.

Data inventory

The dependent variables I plan to study are

rlgblg: Do you consider yourself as belonging to any particular religion or denomination?

rlgdgr: Regardless of whether you belong to a particular religion, how religious would you say you are?

The explanatory variables are

yrbrn: And in what year were you born?

hinctnta: Using this card, please tell me which letter describes your household's total income, after tax and compulsory deductions, from all sources? If you don't know the exact figure, please give an estimate. Use the part of the card that you know best: weekly, monthly or annual income.

eduyrs: About how many years of education have you completed, whether full-time or part-time? Please report these in full-time equivalents and include compulsory years of schooling.

tvtot: On an average weekday, how much time, in total, do you spend watching television?

rdtot: On an average weekday, how much time, in total, do you spend listening to the radio?

nwsptot: On an average weekday, how much time, in total, do you spend reading the newspapers?

netuse: Now, using this card, how often do you use the internet, the World Wide Web or e-mail - whether at home or at work - for your personal use?

Recodes

Income: I created a variable, hinctnta5, which subtracts 5 from hinctnta, so the mean is near 0.  This shift makes the parameters of the model easier to interpret.

Year born: Similarly, I created yrbrn60, which subtracts 1960 from yrbrn.

Years of education: The distribution of eduyrs includes some large values that might be errors, and the question was posed differently in the first few rounds.  I will investigate more carefully later, but for now I am replacing values greater than 25 years with 25, and subtracting off the mean, 12, to create eduyrs12.


Results

Just to get a quick look at things, I ran a logistic regression with rlgblg as the dependent variable, using data Rounds 1-5 and including all countries.  The sample size is 229,307.  Here are the estimated parameters (computed by StatsModels):
coefstd errzP>|z|[95.0% Conf. Int.]
Intercept0.98110.01470.0140.0000.954 1.009
yrbrn60-0.00780.000-27.8260.000-0.008 -0.007
eduyrs12-0.03760.001-29.6190.000-0.040 -0.035
hinctnta5-0.02200.002-12.9340.000-0.025 -0.019
tvtot-0.01610.002-7.2050.000-0.021 -0.012
rdtot-0.01490.002-8.8260.000-0.018 -0.012
nwsptot-0.03200.004-8.9240.000-0.039 -0.025
netuse-0.07580.002-42.0620.000-0.079 -0.072

The parameters are all statistically significant with very small p-values.  And they are all negative, which indicates:

  • Younger people are less likely to report a religious affiliation.
  • More educated people are less likely...
  • People with higher income are less likely...
  • People who consume more media (television, radio, newspaper) are less likely...
  • People who use the Internet more are less likely...
The effect of Internet use (per hour per week) appears to be about twice the effect of reading the newspaper, which is about twice the effect of television or radio.

The effect of the Internet is comparable to about a decade of age, two years of education, or 3 deciles of income.


Most of these results are consistent with what I saw in my previous study and what other studies have shown.  One exception is income: in other studies, the usual pattern is that people in the lowest income groups are less likely to be affiliated, and after that, income has no effect.  We'll see if this preliminary result holds up.

I ran a similar model using rlgdgr (degree of religiosity) as the dependent variable:
coefstd errtP>|t|[95.0% Conf. Int.]
Intercept5.66680.019300.0710.0005.630 5.704
yrbrn60-0.01800.000-47.3520.000-0.019 -0.017
eduyrs12-0.06880.002-40.1590.000-0.072 -0.065
hinctnta5-0.02660.002-11.3970.000-0.031 -0.022
tvtot-0.08010.003-26.3340.000-0.086 -0.074
rdtot-0.01790.002-7.7910.000-0.022 -0.013
nwsptot-0.05310.005-10.8730.000-0.063 -0.044
netuse-0.10200.002-40.9420.000-0.107 -0.097

The results are similar.  Again, this IPython notebook has the details.

Limitations

Again, we should not take these results too seriously yet:

  1. So far I am not taking into account the weights associated with respondents, either within or across countries.  So for now I am oversampling people in small countries, as well as some groups within countries.
  2. At this point I haven't done anything careful to fill missing values, so the results will change when I get that done.
  3. And I think it will be more meaningful to break the results down by country.
Stay tuned.  More coming soon!





3 comments:

  1. What is Intercept standing for? for neutral (rlgblg, rlgdgr)?
    and what is its coef.?

    ReplyDelete
    Replies
    1. Intercept is the value of the dependent variable that the model gives, when the independent variable are zero.

      Delete
    2. For rlgblg I used logistic regression, so the intercept is in log odds. For someone born in 1960, with 12 years of education, income 5 (on a 10 point scale), with minimal media use and no access to the Internet, the value is close to 1, which corresponds to a probability near 50%.

      For rlgdgr, the same hypothetical person would be expected to report 5.7 on a 10 point scale.

      But don't take that too seriously, because it's an unweighted average across different countries, and it's at the extreme end of some independent variables.

      At this point I'm just warming up the models.

      Delete