Site icon R-bloggers

Men’s domestic chores and fertility rates – Part I by @ellis2013nz

[This article was first published on free range statistics - R, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.

Author’s introduction

This post grew out of a rambling, sporadically multi-month play with a bunch of data that became far too big for a single post for any plausible audience. So I have broken that work into three artefacts that might be of interest in different ways to different audiences:

Also, all em-dashes in this post were defiantly typed, by me, in HTML, by hand.

OK, onto the blog post.


Time-use and number of children

An apparent relationship in high GDP per capita countries

Some months ago a post floated across my Bluesky feed making an argument to the effect of “if societies want more children, then men should do more of the housework”, accompanied by a chart from a few-years-old paper. The chart was a scatter plot with something like male share of unpaid domestic chores on the horizontal axis, and total fertility rate on the vertical axis—each point was one of selected OECD countries at a point in time for which data on both variables was available—and there was a definite positive correlation.

I can’t find the chart now, but it looked something very similar to this one I’ve made for myself:

The case was being made that if you think the world isn’t having enough children (not something I personally subscribe to but let’s accept it as a problem for some people), the answer might be more feminism and gender equality, not less. And the obvious context being the various pro-traditionalism, trad-wife, etc arguments to the opposite effect, going around in the altogether rather contemptible (again, obviously this is just my own view) pro-natalism discourse.

Might as well get on the record, while it’s not relevant statistically, that I’m fully for more feminism and gender equality, and I also think “because then women will have more children” is a very bad argument for these things.

Unfortunately both the Bluesky post I saw and the original article have now escaped me, but I do remember that the data was a bit old (2010s), and some people commenting ‘ah, woke Scandinavian country X where men do lots of housework, but since the time in this chart they have stopped having as many children too’. More importantly, I was intrigued by the use of “selected countries” in the title. Selected how and why, I wondered at the time.

Obviously, limiting the analysis to rich countries gives a narrow view on a bigger relationship. Because one of the strongest empirical relationships in demography, on a historical scale, is the observation that as women and girls get more educational and economic opportunities, they tend to have less children, in terms of a society-wide average of a country going through economic development.

I’m old enough to remember when everyone I engaged with seemed to agree this was a good thing, both in terms of the extra opportunities and choices for women as a good in itself, and avoiding cramming too many people into an already crowded and under-resourced planet. Apparently this is no longer a consensus, which just leaves me, I don’t know, stroking my grey beard and feeling the world’s passed me by.

What causes what?

I would expect, world-wide, that women do a higher share of the housework in countries where they have less economic opportunities (would you call these more patriarchal and ‘traditional’ societies? somewhat difficult to get a non-offensive terminology here). And that in those same countries, they also have more children (see widely known historical empirical fact referred to above). In fact, what I’d expect is a diagram of causes and effects that looks something like this:

In this model, economic and education opportunities for women and girls leads to choices to have less children and a decrease in total fertility rate, shown with a red arrow because of the downwards impact. Men doing more housework as a result of a rising culture of gender equality and changing social norms has an impact (probably smaller) in the positive direction, with a blue arrow. That culture of gender equality itself comes about partly from changing economic conditions (women moving in to visible roles) and partly from successful advocacy.

Naturally, this is a gross over-simplification of the reality of these processes.

The diagram above isn’t a directed acyclic graph (DAG) because it’s not acyclic – that is, some of the arrows are two-way, such as economic growth leading to more economic and educational opportunities for women and girls, and economic and educational opportunities for women and girls leading to economic growth. But you could reduce it to a DAG if you limited it to the three key variables of total fertility rate, men doing housework, and opportunities for women and girls.

This simplified version doesn’t make it clear where increased opportunities for women and girls come from or why they lead to men doing more of the housework. The original, more complex, diagram shows that this was expected to happen via the (difficult to observe and complex to evolve) mediating factor of a general culture of gender equality.

The simplified diagram does help us think through what to expect if we ignore the confounder of “economic and educational opportunities for women and girls” and just plot male share of unpaid domestic chores against total fertility rate.

“… all others must bring data”

Who measures this stuff?

OK then, let’s look at some data.

Sustainable Development Goals (SDG) Indicator 5.4.1 is “the Proportion of time spent on unpaid domestic chores and care work, by sex, age and location (%)”, which is fantastic because it means we have an internationally agreed standard on how this is measured. It also means that what data is available will be in the United Nations Statistical Division’s definitive database of the SDG indicators.

Data won’t be available for all countries, and certainly not for all years in all countries, because it depends on a difficult and expensive time use survey. Very few countries can afford to prioritise one of these regularly and frequently, and many have never had one at all.

For the vertical axis of our first plot, we can get total fertility rate from various sources, but one convenient one that gives an estimate for each country for each year on a standardised, comparable basis is the UN’s World Population Prospects.

We have several challenges in using all that data:

A relationship reversed

Once I had the data in place, I started with a scatter plot, of all countries, of our two variables.

In stark contrast to the plot of just high-income countries that started me off, there’s a strongish negative relationship here. The direction of the relationship has reversed! This is what I expected and is consistent with my thinking about economic and educational opportunities for women and girls being an important confounding variable as soon as we look at a broader range of countries.

What about if we introduce some other variables, proxies for the economic opportunities for women and girls? Obvious candidates are income or, failing that, GDP per capita, appropriately controlled for purchasing power parity in each country and point of time; and some general female empowerment index like relative literacy (say female literacy divided by male literacy, at age 15).

What I’m after here is drawing some charts like this which will get us started in seeing if the apparent relationship between male share of domestic chores and fertility rate is really an artefact of confounding variables like overall economic development.

Here we do see, for example, a very interesting result that within the three lower GDP per capita categories of countries there is a negative relationship between male share of domestic chores and fertility. But in the highest GDP per capita category, that relationship is reversed. In fact, the scatter plot that started me on this whole journey was basically the bottom right facet of this diagram.

Measuring gender inequality

We need to do more though—we can get a measure of female economic empowerment (and hence choices between motherhood and employment). The best data I could find for my purpose on this was the Gender Inequality Index produced by the UNDP as part of their annual Human Development Report process. Here’s what that number looks like for the countries that we have enough data for this overall blog:

Finally in this exploratory stage, here is a plot of all the pairwise relationships between the variables we’ve been discussing:

There’s a lot packed in to plots like these, but what we see here is that:

Statistical modelling

The type of model I want to fit is one that has all these features:

To do this I opted to use the gam function from Simon Wood’s mgcv package, fit with this snippet of code:

model6b <- gam(tfr ~ s(time_period) + 
                     s(gii, k = 3) + 
                     s(log(gdprppppc), prop_male) + 
                     s(country_fac, bs = 're'), 
                data = model_ready, family = quasipoisson, method = "REML")

The forthcoming “behind the scenes” follow-up post will have more discussion of some of the modelling choices, diagnoses, and statistical tests.

The end result is that this model is not an improvement on a model that drops prop_male—ie the proportion of domestic work that is done by men—altogether. As seen in this Analysis of Deviance table, with virtually no extra deviance in fertility explained by the more complex model:

Analysis of Deviance Table

Model 1: tfr ~ s(time_period) + s(gii, k = 3) + s(log(gdprppppc)) + s(country_fac, 
    bs = "re")
Model 2: tfr ~ s(time_period) + s(gii, k = 3) + s(log(gdprppppc), prop_male) + 
    s(country_fac, bs = "re")
  Resid. Df Resid. Dev     Df Deviance      F Pr(>F)
1    82.463     1.0585                              
2    77.330     1.0154 5.1326 0.043118 0.7491 0.5925

This isn’t surprising when we reflect on the pairs plot earlier. GDP per capita and the gender inequality index both have strong, obvious relationships with total fertility rate. It makes sense that between them they soak up all the variance that can be explained at the country level.

To see the modelling results visually, here is a plot showing predictions of the average level of fertility rate at varying levels of that male housework variable, created with the incredibly useful marginaleffects package by Vincent Arel-Bundock, Noah Greifer and Andrew Heiss. What we see here is no material relationship:

Contrast that to comparable presentation of the results for gender inequality, and for PPP GDP per capita:

The time relationship is an interesting one. It looks from the plot below that there is no material relationship, but the statistical evidence is pretty strong that it is worth keeping this variable in the model.

My intuitive explanation for this is that time is more important in explaining trends in fertility rate in the countries that have multiple observations in this sample; and this is not easy to pick up visually in a chart of this sort. Anyway, it doesn’t matter, as I’m not interested in the time trend in its own right, just in controlling for it as a possible spoiler of our more important statistical conclusions.

Conclusions

Does this mean that men doing housework doesn’t impact on fertility decisions? No! In fact it’s very possible it does. But it does mean that you can’t see this in the country level data. To really investigate this, you will need household level data; something like the Australian HILDA survey (Household Income and Labour Dynamics in Australia).

To leave a comment for the author, please follow the link and comment on their blog: free range statistics - R.

R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Exit mobile version