Computer exercise: female fertility in Europe
We are interested in female fertility in Europe in 2012. To study this, we have constructed a data table with 39 European countries as rows, and age groups as columns: 15-19, 20-24, 25-29, 30-34, 35-39, 40 and over. In the relevant table entry, we have the mean fertility of women for a given country and age group. Here, fertility means the mean number of children born per 1000 women.
To be able to answer the questions, you must run a PCA using the data set available in this file. Here is the line of code you need to import this data into R (don't forget to modify the path):
don = read.table("data_PCA_Fertility.csv", header=TRUE, sep=";", check.names=FALSE, row.names=1, stringsAsFactors = TRUE)Your aim is to be able to explain and describe female fertility in Europe. After thinking about which variables should be active, and which variables should be supplementary, perform a PCA on this data set (a standardized PCA) and then answer the following questions.