Datasets:
Formats:
csv
Size:
< 1K
Tags:
psychometric-assessment
career-intelligence
personality-test
cognitive-ability
interest-mapping
career-guidance
License:
Update README.md
Browse files
README.md
CHANGED
|
@@ -1,3 +1,89 @@
|
|
| 1 |
---
|
| 2 |
license: mit
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: mit
|
| 3 |
+
tags:
|
| 4 |
+
- psychometric-assessment
|
| 5 |
+
- career-intelligence
|
| 6 |
+
- personality-test
|
| 7 |
+
- cognitive-ability
|
| 8 |
+
- interest-mapping
|
| 9 |
+
- career-guidance
|
| 10 |
+
- strength-discovery
|
| 11 |
+
- dmit
|
| 12 |
+
- career-readiness
|
| 13 |
+
- psychometric-fyi
|
| 14 |
+
pretty_name: Psychometric Career Intelligence Benchmarks
|
| 15 |
+
size_categories:
|
| 16 |
+
- n<1K
|
| 17 |
---
|
| 18 |
+
|
| 19 |
+
# Psychometric Career Intelligence Benchmarks
|
| 20 |
+
|
| 21 |
+
[](https://doi.org/10.5281/zenodo.21710607)
|
| 22 |
+
|
| 23 |
+
Benchmark dataset of 20 student psychometric assessment cases with individual scores for personality trait, cognitive ability, interest alignment, motivation clarity, strength discovery, and career readiness.
|
| 24 |
+
|
| 25 |
+
Built by [Psychometric.fyi](https://psychometric.fyi).
|
| 26 |
+
|
| 27 |
+
## Dataset Description
|
| 28 |
+
|
| 29 |
+
This dataset contains benchmark data for an educational resource exploring the science of psychometric assessments and career decision making — helping students discover their strengths and make informed academic and career decisions.
|
| 30 |
+
|
| 31 |
+
## Columns
|
| 32 |
+
|
| 33 |
+
| Column | Type | Description |
|
| 34 |
+
|--------|------|-------------|
|
| 35 |
+
| id | integer | Case ID |
|
| 36 |
+
| student_profile | string | Student profile name |
|
| 37 |
+
| assessment_type | string | Type of psychometric assessment |
|
| 38 |
+
| personality_trait_score | integer | Personality trait score (0-100) |
|
| 39 |
+
| cognitive_ability_score | integer | Cognitive ability score (0-100) |
|
| 40 |
+
| interest_alignment_score | integer | Interest alignment score (0-100) |
|
| 41 |
+
| motivation_clarity_score | integer | Motivation clarity score (0-100) |
|
| 42 |
+
| strength_discovery_score | integer | Strength discovery score (0-100) |
|
| 43 |
+
| career_readiness_score | integer | Career readiness score (0-100) |
|
| 44 |
+
| overall_career_intelligence | integer | Overall career intelligence score (0-100) |
|
| 45 |
+
| priority_action | string | Lowest scoring signal to act on first |
|
| 46 |
+
| stem_score | integer | STEM & Technology pathway score |
|
| 47 |
+
| creative_score | integer | Creative & Design pathway score |
|
| 48 |
+
| business_score | integer | Business & Leadership pathway score |
|
| 49 |
+
| social_score | integer | Social & Education pathway score |
|
| 50 |
+
| grade_level | string | Student grade level |
|
| 51 |
+
| notes | string | Case notes |
|
| 52 |
+
|
| 53 |
+
## Score Interpretation
|
| 54 |
+
|
| 55 |
+
| Score | Status | Action |
|
| 56 |
+
|-------|--------|--------|
|
| 57 |
+
| 0-30 | Critical | Immediate assessment and guidance required |
|
| 58 |
+
| 31-60 | At Risk | Active career counselling needed |
|
| 59 |
+
| 61-80 | Healthy | On track with targeted development |
|
| 60 |
+
| 81-100 | Excellent | Strong career intelligence — ready to act |
|
| 61 |
+
|
| 62 |
+
## Usage
|
| 63 |
+
|
| 64 |
+
```python
|
| 65 |
+
import pandas as pd
|
| 66 |
+
df = pd.read_csv("psychometric_benchmarks.csv")
|
| 67 |
+
print(df.head())
|
| 68 |
+
```
|
| 69 |
+
|
| 70 |
+
## Citation
|
| 71 |
+
Psychometric.fyi. (2026). Psychometric Career Intelligence. Zenodo. https://doi.org/10.5281/zenodo.21710607
|
| 72 |
+
|
| 73 |
+
## Links
|
| 74 |
+
|
| 75 |
+
| Platform | URL |
|
| 76 |
+
|----------|-----|
|
| 77 |
+
| Website | https://psychometric.fyi |
|
| 78 |
+
| GitHub | https://github.com/Psychometric-fyi/Psychometric-career-intelligence |
|
| 79 |
+
| NPM | https://npmjs.com/package/@psychometric-fyi/career-intelligence |
|
| 80 |
+
| PyPI | https://pypi.org/project/psychometric-career-intelligence |
|
| 81 |
+
| Zenodo | https://doi.org/10.5281/zenodo.21710607 |
|
| 82 |
+
| SlideShare | https://www.slideshare.net/slideshow/psychometric-fyi-research-backed-psychometric-assessments-for-student-career-academic-guidance/288900331 |
|
| 83 |
+
| Quora | https://www.quora.com/profile/Psychometric-Fyi |
|
| 84 |
+
| Pinterest | https://www.pinterest.com/psychometricfyi/ |
|
| 85 |
+
| Medium | https://medium.com/@psychometric-fyi |
|
| 86 |
+
|
| 87 |
+
## License
|
| 88 |
+
|
| 89 |
+
MIT — [Psychometric.fyi](https://psychometric.fyi)
|