lukebarousse commited on
Commit
b919bee
·
verified ·
1 Parent(s): 1d815e9

Update README.md

Browse files

ad data dictionary

Files changed (1) hide show
  1. README.md +26 -0
README.md CHANGED
@@ -1,3 +1,29 @@
1
  ---
2
  license: apache-2.0
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
  ---
2
  license: apache-2.0
3
  ---
4
+
5
+ # 🧠 data_jobs Dataset
6
+
7
+ A dataset of real-world data analytics job postings from 2023, collected and processed by Luke Barousse.
8
+
9
+ ## 📘 Data Dictionary
10
+
11
+ | Column Name | Description | Type | Source |
12
+ |-------------------------|-----------------------------------------------------------------------------|--------------|------------------|
13
+ | `job_title_short` | Cleaned/standardized job title using BERT model (10-class classification) | Calculated | From `job_title` |
14
+ | `job_title` | Full original job title as scraped | Raw | Scraped |
15
+ | `job_location` | Location string shown in job posting | Raw | Scraped |
16
+ | `job_via` | Platform the job was posted on (e.g., LinkedIn, Jobijoba) | Raw | Scraped |
17
+ | `job_schedule_type` | Type of schedule (Full-time, Part-time, Contractor, etc.) | Raw | Scraped |
18
+ | `job_work_from_home` | Whether the job is remote (`true`/`false`) | Boolean | Parsed |
19
+ | `search_location` | Location used by the bot to generate search queries | Generated | Bot logic |
20
+ | `job_posted_date` | Date and time when job was posted | Raw | Scraped |
21
+ | `job_no_degree_mention` | Whether the posting explicitly mentions no degree is required | Boolean | Parsed |
22
+ | `job_health_insurance` | Whether the job mentions health insurance | Boolean | Parsed |
23
+ | `job_country` | Country extracted from job location | Calculated | Parsed |
24
+ | `salary_rate` | Indicates if salary is annual or hourly | Raw | Scraped |
25
+ | `salary_year_avg` | Average yearly salary (calculated from salary ranges when available) | Calculated | Derived |
26
+ | `salary_hour_avg` | Average hourly salary (same logic as yearly) | Calculated | Derived |
27
+ | `company_name` | Company name listed in job posting | Raw | Scraped |
28
+ | `job_skills` | List of relevant skills extracted from job posting using PySpark | Parsed List | NLP Extracted |
29
+ | `job_type_skills` | Dictionary mapping skill types (e.g., 'cloud', 'libraries') to skill sets | Parsed Dict | NLP Extracted |