audit: verify skills.ts against reference documents

- Python: startYear corrected 2019→2017 (self-taught during Tesco night
  shifts per secondary ref); yearsOfExperience 6→8
- SQL: startYear corrected 2018→2022 (learned after gaining NHS database
  access per secondary ref); removed unverified pre-2022 history entries
- Power BI: fixed prescribing history year inconsistency (2019→2020);
  removed "PharMetrics real-time expenditure dashboard" reference
- All skill categories and names verified against CV Core Competencies
This commit is contained in:
2026-02-17 03:18:04 +00:00
parent 0fba10d469
commit abb4fcd909
+10 -11
View File
@@ -23,14 +23,14 @@ export const skills: SkillMedication[] = [
id: 'python', id: 'python',
name: 'Python', name: 'Python',
frequency: 'Daily', frequency: 'Daily',
startYear: 2019, startYear: 2017,
yearsOfExperience: 6, yearsOfExperience: 8,
proficiency: 90, proficiency: 90,
category: 'Technical', category: 'Technical',
status: 'Active', status: 'Active',
icon: 'Code2', icon: 'Code2',
prescribingHistory: [ prescribingHistory: [
{ year: 2017, description: 'Started: Self-taught for data analysis automation' }, { year: 2017, description: 'Started: Self-taught during Tesco night shifts for data analysis automation' },
{ year: 2019, description: 'Increased: Dashboard development, data pipeline work' }, { year: 2019, description: 'Increased: Dashboard development, data pipeline work' },
{ year: 2022, description: 'Specialist use: Blueteq automation, Sankey analysis tools' }, { year: 2022, description: 'Specialist use: Blueteq automation, Sankey analysis tools' },
{ year: 2024, description: 'Advanced: Switching algorithm (14,000 patients), CD monitoring' }, { year: 2024, description: 'Advanced: Switching algorithm (14,000 patients), CD monitoring' },
@@ -41,16 +41,15 @@ export const skills: SkillMedication[] = [
id: 'sql', id: 'sql',
name: 'SQL', name: 'SQL',
frequency: 'Daily', frequency: 'Daily',
startYear: 2018, startYear: 2022,
yearsOfExperience: 7, yearsOfExperience: 3,
proficiency: 88, proficiency: 88,
category: 'Technical', category: 'Technical',
status: 'Active', status: 'Active',
icon: 'Database', icon: 'Database',
prescribingHistory: [ prescribingHistory: [
{ year: 2017, description: 'Started: Basic querying for prescribing analysis' }, { year: 2022, description: 'Started: Gained access to NHS databases, prescribing data querying' },
{ year: 2019, description: 'Increased: Complex joins, data transformation' }, { year: 2023, description: 'Increased: Complex joins, data transformation, Blueteq integration' },
{ year: 2022, description: 'Advanced: Patient-level analytics, dm+d integration' },
{ year: 2024, description: 'Specialist: Comprehensive medicines data table development' }, { year: 2024, description: 'Specialist: Comprehensive medicines data table development' },
{ year: 2025, description: 'Current: Population health data infrastructure' }, { year: 2025, description: 'Current: Population health data infrastructure' },
], ],
@@ -66,9 +65,9 @@ export const skills: SkillMedication[] = [
status: 'Active', status: 'Active',
icon: 'PieChart', icon: 'PieChart',
prescribingHistory: [ prescribingHistory: [
{ year: 2019, description: 'Started: Dashboard creation for team reporting' }, { year: 2020, description: 'Started: Dashboard creation for team reporting' },
{ year: 2021, description: 'Increased: DAX measures, data modelling' }, { year: 2022, description: 'Increased: DAX measures, data modelling' },
{ year: 2024, description: 'Advanced: PharMetrics real-time expenditure dashboard' }, { year: 2024, description: 'Advanced: Switching progress dashboards, executive reporting' },
{ year: 2025, description: 'Current: DOAC switching scenario model, executive reporting' }, { year: 2025, description: 'Current: DOAC switching scenario model, executive reporting' },
], ],
}, },