Data Science Salaries 2025 💸
Salaries of Different Data Science Fields in the Data Science Domain in 2025.
@kaggle.arnabchaki_data_science_salaries_2025
Salaries of Different Data Science Fields in the Data Science Domain in 2025.
@kaggle.arnabchaki_data_science_salaries_2025
Data Science Job Salaries Dataset contains 11 columns, each are:
work_year: The year the salary was paid.
experience_level: The experience level in the job during the year
employment_type: The type of employment for the role
job_title: The role worked in during the year.
salary: The total gross salary amount paid.
salary_currency: The currency of the salary paid as an ISO 4217 currency code.
salaryinusd: The salary in USD
employee_residence: Employee's primary country of residence in during the work year as an ISO 3166 country code.
remote_ratio: The overall amount of work done remotely
company_location: The country of the employer's main office or contracting branch
company_size: The median number of people that worked for the company during the year
CREATE TABLE salaries (
"work_year" BIGINT,
"experience_level" VARCHAR,
"employment_type" VARCHAR,
"job_title" VARCHAR,
"salary" BIGINT,
"salary_currency" VARCHAR,
"salary_in_usd" BIGINT,
"employee_residence" VARCHAR,
"remote_ratio" BIGINT,
"company_location" VARCHAR,
"company_size" VARCHAR
);
Anyone who has the link will be able to view this.