Data Science Job Postings & Skills (2024)
Analyzing job market and skills required for data professionals
@kaggle.asaniczka_data_science_job_postings_and_skills
Analyzing job market and skills required for data professionals
@kaggle.asaniczka_data_science_job_postings_and_skills
LinkedIn is a popular professional networking platform with millions of job postings across various industries.
This dataset provides a raw dump of data science-related job postings collected from LinkedIn. It includes information about job titles, companies, locations, search parameters, and other relevant details.
The main objective of this dataset is not only to provide insights into the data science job market and the skills required by professionals in this field but also to offer users an opportunity to practice their data cleaning skills.
By working with this dataset, users can gain hands-on experience in cleaning and preprocessing raw data, a critical skill for aspiring data scientists.
If you find this dataset useful or interesting, please upvote it! 😊💝
Photo by Luke Chesser on Unsplash
CREATE TABLE job_postings (
"job_link" VARCHAR,
"last_processed_time" TIMESTAMP,
"last_status" VARCHAR,
"got_summary" VARCHAR,
"got_ner" VARCHAR,
"is_being_worked" VARCHAR,
"job_title" VARCHAR,
"company" VARCHAR,
"job_location" VARCHAR,
"first_seen" TIMESTAMP,
"search_city" VARCHAR,
"search_country" VARCHAR,
"search_position" VARCHAR,
"job_level" VARCHAR,
"job_type" VARCHAR
);
CREATE TABLE job_skills (
"job_link" VARCHAR,
"job_skills" VARCHAR
);
CREATE TABLE job_summary (
"job_link" VARCHAR,
"job_summary" VARCHAR
);
Anyone who has the link will be able to view this.