Celebrities with Divorced Parents are more Likely to Divorce Later in Life

Blog Home



After collecting a lot of data from Wikipedia I concluded that celebrities who in their childhood/adolescense had parents who divored are more likely to divorce later in life with their partner. Meanwhile celebrities with undivorced parents have a lower chance of divorcing later in life.

Process of Gathering the Data,

You can skip this directly and go to the next sub-heading that shows the results of the research.

To get the data on celebrities I made a program that would read the names of the celebrities (from an array) and then for each name would go to their corresponding wikipedia page and check if the parents of the celebrity had divorced in the "Early life" section of their wikipedia page. For example if you look at Ben Affleck's wikipedia page his parents divorced when he was 12. If the program detected that the celebrity had divorced parents it would then check if the celebrity had divorced with his/her partener as well. For this, the program would go to the "Personal life" section of the wikipedia page and search for keywords such as "divorce" and "seperation". Again, as an example, Ben Affleck's personal life section states that he divorced with Jennifer Garner.

For more details on the programming, click the link to the github repository

Results,

After writing the program, as a pilot sample, I copied the list of all the celebrities from this website. Not all of the celebrities had a wikipedia page so out of +100 names, only 85 were captured by the program.

This were the results from the pilot sample:



Celebrities = 85 (pilot sample)

| Celebrities with divorced parents = 15 |
| Celebrities who divorced later in life = 10 |

| Percentage = 66% |



| Celebrities with undivorced parents = 70 |
| Celebrities who divorced later in life = 20 |

| Percentage = 28.6% |



This data shows that out of the celebrities with divorced parents (15), 66% (10/15) of them will divorce later in life. Meanwhile the celebrities with undivorced parents (70), only 28.6% (20/70) of them will divorce later in life. This shows a correlation that celebrities with divorced parents have a higher chance of divorcing.

After the pilot sample, I searched for longer lists so I can have a larger sample. I copied the names from this list with a sample of 325 celebrities and this list with a sample of 525 celebrities. The complete sample was supposed to be 850 however it wasn't for the following reasons:

1.) The two lists have some names in common so one of the duplicated name had to be removed (I didn't do this manually).

2.) Some celebrities do not have a wikipedia page

3.) For each celebrity, the program had to make 2 requests to the Wikipedia API so in total around 1300 request were made to Wikipedia in less than 15 seconds. During this process Wikipedia blocked me for passing over the request limit and so a part of the list wasn't in the sample.

In the end, out of the 850 celebrities only 257 made it to the sample:



Celebrities = 257 (sample)

| Celebrities with divorced parents = 48 |
| Celebrities who divorced later in life = 33 |

| Percentage = 73.3% |



| Celebrities with undivorced parents = 209 |
| Celebrities who divorced later in life = 63 |

| Percentage = 30.1% |







Just like the pilot sample, this sample shows that celebrities with divorced parents have a higher chance (73.3%) of divorcing later in life. And again, celebrities with undivorced parents have a lower chance (30.1%)of divorcing later in life.

To be clear, it is unknown if a celebrity (with or without divorced parents) will be the one to file the divorce or if their partner will.

In conclusion, this is just an interesting correlation however it does not prove that a parent's divorce will affect the relationships of their grown-up child in the future.



Limitations of the Study,

- To keep the program simple, only celebrities with two names were selected from the lists. For example "Ben Affleck" has two names so it can be selected but "Robert Downey Jr." has 3 names and "Adele" has only one so the program did not include them in the sample.

- Although not as important, the pilot sample has some common celebrity names with the final sample so they aren't completely different.



14/1/2018