IT Salary Survey For EU Region(2018-2020)
Annual Anonymous IT Salary Survey for the European region
@kaggle.parulpandey_2020_it_salary_survey_for_eu_region
Annual Anonymous IT Salary Survey for the European region
@kaggle.parulpandey_2020_it_salary_survey_for_eu_region
An anonymous salary survey has been conducted annually since 2015 among European IT specialists with a stronger focus on Germany. This year 1238 respondents volunteered to participate in the survey. The data has been made publicly available by the authors.
The dataset contains rich information about the salary patterns among the IT professionals in the EU region and offers some great insights.
An accompanying article - IT Salary Survey December 2020 has also been published which goes deeper into the findings.
Thanks to Ksenia Legostay for curating and analyzing the data. Additional thanks to Viktor Shcherban and Sergey Vasilyev for collaborating on the survey.
CREATE TABLE it_salary_survey_eu_2018 (
"timestamp" VARCHAR,
"age" DOUBLE,
"gender" VARCHAR,
"city" VARCHAR,
"position" VARCHAR,
"years_of_experience" DOUBLE,
"your_level" VARCHAR,
"current_salary" DOUBLE,
"salary_one_year_ago" DOUBLE,
"salary_two_years_ago" DOUBLE,
"are_you_getting_any_stock_options" VARCHAR -- Are You Getting Any Stock Options?,
"main_language_at_work" VARCHAR,
"company_size" VARCHAR,
"company_type" VARCHAR
);CREATE TABLE it_salary_survey_eu_2020 (
"timestamp" VARCHAR,
"age" DOUBLE,
"gender" VARCHAR,
"city" VARCHAR,
"position" VARCHAR,
"total_years_of_experience" VARCHAR,
"years_of_experience_in_germany" VARCHAR,
"seniority_level" VARCHAR,
"your_main_technology_programming_language" VARCHAR -- Your Main Technology / Programming Language,
"other_technologies_programming_languages_you_use_often" VARCHAR,
"yearly_brutto_salary_without_bonus_and_stocks_in_eur" DOUBLE -- Yearly Brutto Salary (without Bonus And Stocks) In EUR,
"yearly_bonus_stocks_in_eur" VARCHAR -- Yearly Bonus + Stocks In EUR,
"annual_brutto_salary_without_bonus_and_stocks_one_year_a6fc44dd" DOUBLE -- Annual Brutto Salary (without Bonus And Stocks) One Year Ago. Only Answer If Staying In The Same Country,
"annual_bonus_stocks_one_year_ago_only_answer_if_stayin_c2a45f2e" VARCHAR -- Annual Bonus+stocks One Year Ago. Only Answer If Staying In Same Country,
"number_of_vacation_days" VARCHAR,
"employment_status" VARCHAR,
"n__ontract_duration" VARCHAR -- Сontract Duration,
"main_language_at_work" VARCHAR,
"company_size" VARCHAR,
"company_type" VARCHAR,
"have_you_lost_your_job_due_to_the_coronavirus_outbreak" VARCHAR -- Have You Lost Your Job Due To The Coronavirus Outbreak?,
"have_you_been_forced_to_have_a_shorter_working_week_ku_8487f263" DOUBLE -- Have You Been Forced To Have A Shorter Working Week (Kurzarbeit)? If Yes, How Many Hours Per Week,
"have_you_received_additional_monetary_support_from_you_503a080a" VARCHAR -- Have You Received Additional Monetary Support From Your Employer Due To Work From Home? If Yes, How Much In 2020 In EUR
);CREATE TABLE t_salary_survey_eu_2019 (
"zeitstempel" VARCHAR,
"age" DOUBLE,
"gender" VARCHAR,
"city" VARCHAR,
"seniority_level" VARCHAR,
"position_without_seniority" VARCHAR -- Position (without Seniority),
"years_of_experience" BIGINT,
"your_main_technology_programming_language" VARCHAR -- Your Main Technology / Programming Language,
"yearly_brutto_salary_without_bonus_and_stocks" DOUBLE -- Yearly Brutto Salary (without Bonus And Stocks),
"yearly_bonus" DOUBLE,
"yearly_stocks" DOUBLE,
"yearly_brutto_salary_without_bonus_and_stocks_one_year_40e04d18" DOUBLE -- Yearly Brutto Salary (without Bonus And Stocks) One Year Ago. Only Answer If Staying In Same Country,
"yearly_bonus_one_year_ago_only_answer_if_staying_in_sa_38b68093" DOUBLE -- Yearly Bonus One Year Ago. Only Answer If Staying In Same Country,
"yearly_stocks_one_year_ago_only_answer_if_staying_in_s_aed81626" DOUBLE -- Yearly Stocks One Year Ago. Only Answer If Staying In Same Country,
"number_of_vacation_days" DOUBLE,
"number_of_home_office_days_per_month" DOUBLE,
"main_language_at_work" VARCHAR,
"company_name" VARCHAR,
"company_size" VARCHAR,
"company_type" VARCHAR,
"n__ontract_duration" VARCHAR -- Сontract Duration,
"company_business_sector" VARCHAR,
"n_0" VARCHAR -- 0
);Anyone who has the link will be able to view this.