French Employment, Salaries, Population Per Town
Some data to show equality and inequalities in France
@kaggle.etiennelq_french_employment_by_town
Some data to show equality and inequalities in France
@kaggle.etiennelq_french_employment_by_town
INSEE is the official french institute gathering data of many types around France. It can be demographic (Births, Deaths, Population Density...), Economic (Salary, Firms by activity / size...) and more.
It can be a great help to observe and measure inequality in the french population.
Four files are in the dataset :
base_etablissement_par_tranche_effectif : give information on the number of firms in every french town, categorized by size , come from INSEE.
name_geographic_information : give geographic data on french town (mainly latitude and longitude, but also region / department codes and names )
net_salary_per_town_per_category : salaries around french town per job categories, age and sex
population : demographic information in France per town, age, sex and living mode
departments.geojson : contains the borders of french departments. From Gregoire David (github)
These datasets can be merged by : CODGEO = code_insee
The entire dataset has been created (and actualized) by INSEE, I just uploaded it on Kaggle after doing some jobs and checks on it. I haven't seen INSEE on Kaggle yet but I think it would be great to bring the organization in as a Kaggle actor.
First aim I had creating that dataset was to provide a map of french towns with the number of firm that are settled in by size.
Now my goal is to explore inequality between men and women, youngsters and elders, working / social classes.
Population can also be a great filter to explain some phenomenons on the maps.
CREATE TABLE base_etablissement_par_tranche_effectif (
"codgeo" VARCHAR,
"libgeo" VARCHAR,
"reg" BIGINT,
"dep" VARCHAR,
"e14tst" BIGINT,
"e14ts0nd" BIGINT,
"e14ts1" BIGINT,
"e14ts6" BIGINT,
"e14ts10" BIGINT,
"e14ts20" BIGINT,
"e14ts50" BIGINT,
"e14ts100" BIGINT,
"e14ts200" BIGINT,
"e14ts500" BIGINT
);CREATE TABLE name_geographic_information (
"eu_circo" VARCHAR,
"code_r_gion" BIGINT,
"nom_r_gion" VARCHAR,
"chef_lieu_r_gion" VARCHAR,
"num_ro_d_partement" VARCHAR,
"nom_d_partement" VARCHAR,
"pr_fecture" VARCHAR,
"num_ro_circonscription" BIGINT,
"nom_commune" VARCHAR,
"codes_postaux" VARCHAR,
"code_insee" BIGINT,
"latitude" DOUBLE,
"longitude" VARCHAR,
"n__loignement" DOUBLE -- Éloignement
);CREATE TABLE net_salary_per_town_categories (
"codgeo" VARCHAR,
"libgeo" VARCHAR,
"snhm14" DOUBLE,
"snhmc14" DOUBLE,
"snhmp14" DOUBLE,
"snhme14" DOUBLE,
"snhmo14" DOUBLE,
"snhmf14" DOUBLE,
"snhmfc14" DOUBLE,
"snhmfp14" DOUBLE,
"snhmfe14" DOUBLE,
"snhmfo14" DOUBLE,
"snhmh14" DOUBLE,
"snhmhc14" DOUBLE,
"snhmhp14" DOUBLE,
"snhmhe14" DOUBLE,
"snhmho14" DOUBLE,
"snhm1814" DOUBLE,
"snhm2614" DOUBLE,
"snhm5014" DOUBLE,
"snhmf1814" DOUBLE,
"snhmf2614" DOUBLE,
"snhmf5014" DOUBLE,
"snhmh1814" DOUBLE,
"snhmh2614" DOUBLE,
"snhmh5014" DOUBLE
);CREATE TABLE population (
"nivgeo" VARCHAR,
"codgeo" VARCHAR,
"libgeo" VARCHAR,
"moco" BIGINT,
"ageq80_17" BIGINT,
"sexe" BIGINT,
"nb" BIGINT
);Anyone who has the link will be able to view this.