Argentina Provincial Data
Provincial dataset, with poverty rate, literacy and health care.
@kaggle.kingabzpro_argentina_provincial_data
Provincial dataset, with poverty rate, literacy and health care.
@kaggle.kingabzpro_argentina_provincial_data
With almost 40 million inhabitants and a diverse geography that encompasses the Andes mountains, glacial lakes, and the Pampas grasslands, Argentina is the second largest country (by area) and has one of the largest economies in South America. It is politically organized as a federation of 23 provinces and an autonomous city, Buenos Aires.
We will analyze ten economic and social indicators collected for each province. Because these indicators are highly correlated, we will use principal component analysis (PCA) to reduce redundancies and highlight patterns that are not apparent in the raw data. After visualizing the patterns, we will use k-means clustering to partition the provinces into groups with similar development levels.
These results can be used to plan public policy by helping allocate resources to develop infrastructure, education, and welfare programs.
DataCamp
CREATE TABLE argentina (
"province" VARCHAR,
"gdp" DOUBLE,
"illiteracy" DOUBLE,
"poverty" DOUBLE,
"deficient_infra" DOUBLE,
"school_dropout" DOUBLE,
"no_healthcare" DOUBLE,
"birth_mortal" DOUBLE,
"pop" BIGINT,
"movie_theatres_per_cap" DOUBLE,
"doctors_per_cap" DOUBLE
);Anyone who has the link will be able to view this.