Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,80 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: mit
|
| 3 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: mit
|
| 3 |
+
---
|
| 4 |
+
---
|
| 5 |
+
license: mit
|
| 6 |
+
task_categories:
|
| 7 |
+
- text-classification
|
| 8 |
+
- data-analysis
|
| 9 |
+
language:
|
| 10 |
+
- en
|
| 11 |
+
- tl
|
| 12 |
+
pretty_name: Philippine Job Listings Dataset
|
| 13 |
+
size_categories:
|
| 14 |
+
- 1K<n<10K
|
| 15 |
+
---
|
| 16 |
+
|
| 17 |
+
# 💼 Philippine Job Listings Dataset
|
| 18 |
+
|
| 19 |
+
## Dataset Description
|
| 20 |
+
|
| 21 |
+
The **Philippine Job Listings Dataset** contains structured information about job postings in the Philippines.
|
| 22 |
+
It includes job titles, categories, locations, salary ranges, and required experience.
|
| 23 |
+
|
| 24 |
+
This dataset is useful for machine learning, analytics, and labor market research.
|
| 25 |
+
|
| 26 |
+
---
|
| 27 |
+
|
| 28 |
+
## 📌 Dataset Details
|
| 29 |
+
|
| 30 |
+
**File Format:** CSV
|
| 31 |
+
**File Name:** `ph_job_listings.csv`
|
| 32 |
+
**Total Columns:** 7
|
| 33 |
+
|
| 34 |
+
### Column Information
|
| 35 |
+
|
| 36 |
+
| Column Name | Description |
|
| 37 |
+
|-------------|-------------|
|
| 38 |
+
| job_title | Title of the job position |
|
| 39 |
+
| company | Name of the hiring company |
|
| 40 |
+
| location | City or province of the job |
|
| 41 |
+
| category | Industry or job category |
|
| 42 |
+
| salary_range | Estimated salary offer |
|
| 43 |
+
| experience_required | Years of experience needed |
|
| 44 |
+
| job_type | Full-time, Part-time, Remote |
|
| 45 |
+
|
| 46 |
+
---
|
| 47 |
+
|
| 48 |
+
## 📊 Sample Data
|
| 49 |
+
|
| 50 |
+
| job_title | company | location | category | salary_range | experience_required | job_type |
|
| 51 |
+
|-----------|---------|----------|----------|--------------|--------------------|---------|
|
| 52 |
+
| Software Developer | ABC Tech | Manila | IT | 30,000-50,000 | 2 | Full-time |
|
| 53 |
+
| Call Center Agent | XYZ BPO | Cebu | BPO | 18,000-22,000 | 0 | Full-time |
|
| 54 |
+
| Graphic Designer | Creative Studio | Davao | Design | 20,000-30,000 | 1 | Remote |
|
| 55 |
+
| Teacher | Bright Future School | Quezon City | Education | 15,000-20,000 | 1 | Full-time |
|
| 56 |
+
| Sales Associate | MegaMall Store | Pasay | Retail | 14,000-16,000 | 0 | Part-time |
|
| 57 |
+
|
| 58 |
+
---
|
| 59 |
+
|
| 60 |
+
## 🎯 Possible Use Cases
|
| 61 |
+
|
| 62 |
+
This dataset can be used for:
|
| 63 |
+
|
| 64 |
+
- Job salary prediction
|
| 65 |
+
- Text classification of job categories
|
| 66 |
+
- Trend analysis in Philippine labor market
|
| 67 |
+
- Building job recommendation systems
|
| 68 |
+
- Training NLP models for Filipino job-related text
|
| 69 |
+
|
| 70 |
+
---
|
| 71 |
+
|
| 72 |
+
## 🛠 How to Use
|
| 73 |
+
|
| 74 |
+
Example usage with Python:
|
| 75 |
+
|
| 76 |
+
```python
|
| 77 |
+
import pandas as pd
|
| 78 |
+
|
| 79 |
+
df = pd.read_csv("ph_job_listings.csv")
|
| 80 |
+
print(df.describe())
|