Hello, I'm
Driving operational efficiency through automation, analytics, and quality optimization across MENA markets. Specialized in Arabic NLP, GIS systems, and ML-powered analytics.
Years Exp.
Projects
MENA Markets
4+ Years in Data & Analytics
KSA, UAE & Egypt (MENA)
Arabic, English & Malayalam
MBA & MA Arabic Language
Results-driven Data Analyst with 4+ years driving operational efficiency through automation, analytics, and quality optimization across MENA markets.
Proven track record reducing manual processes by 70% and delivering bilingual (Arabic/English) data solutions. Specialized in GIS systems, ML-powered analytics, and translating complex data into actionable business insights.
Currently pursuing MBA to combine technical expertise with strategic acumen. With an MA in Arabic Language, I bridge deep cultural and linguistic understanding with technical data expertise.
Amazon — Last Mile Analytics & Quality Team
Bangalore, Karnataka
Uber AI Scaled Solutions
Freelance
Mercor
Freelance
Alignerr
Freelance
Interactive dashboards transforming raw data into strategic insights for MENA logistics operations
Comprehensive 4-page Power BI report tracking delivery performance KPIs across 21 MENA cities with dynamic filtering by country, city, and time period.
Automated Power BI reporting suite for senior leadership reviews, standardising address validation metrics for 50+ team members across 3 MENA markets.
Multi-method anomaly detection visualisation combining Isolation Forest, IQR, and Z-Score consensus to detect delay spikes and volume anomalies across 18 cities.
Advanced SQL analysis demonstrating complex querying, optimization, and business insight extraction
Analyzed 10,000+ delivery records using advanced SQL techniques to surface delay cohorts and root-cause patterns by region, dispatch time, and address type. Built reusable query library for MoM/WoW performance tracking.
-- Delay cohort analysis with running averages
WITH delivery_metrics AS (
SELECT
region,
dispatch_date,
address_type,
delivery_time_hrs,
AVG(delivery_time_hrs) OVER (
PARTITION BY region
ORDER BY dispatch_date
ROWS BETWEEN 6 PRECEDING AND CURRENT ROW
) AS rolling_7d_avg
FROM deliveries
WHERE market IN ('KSA', 'UAE', 'EGY')
),
delay_cohorts AS (
SELECT *,
NTILE(4) OVER (
PARTITION BY region
ORDER BY delivery_time_hrs
) AS delay_quartile
FROM delivery_metrics
)
SELECT region, address_type,
COUNT(*) AS total_deliveries,
ROUND(AVG(delivery_time_hrs), 2) AS avg_delivery_hrs,
ROUND(AVG(rolling_7d_avg), 2) AS trend_avg
FROM delay_cohorts
WHERE delay_quartile = 4 -- Top 25% slowest
GROUP BY region, address_type
ORDER BY avg_delivery_hrs DESC;
Built comprehensive SQL analysis pipeline for address validation quality across KSA, UAE & Egypt. Identified validation failure patterns, error classifications, and optimization opportunities across 100+ address format scenarios.
-- Address quality scoring with error classification
WITH validation_results AS (
SELECT
country,
city,
address_format,
validation_status,
error_type,
COUNT(*) AS case_count,
SUM(CASE WHEN validation_status = 'PASS'
THEN 1 ELSE 0 END) AS pass_count
FROM address_audits
WHERE audit_date >= DATEADD(month, -3, GETDATE())
GROUP BY country, city, address_format,
validation_status, error_type
),
quality_scores AS (
SELECT country, city, address_format,
SUM(case_count) AS total_cases,
ROUND(SUM(pass_count) * 100.0 /
SUM(case_count), 2) AS quality_pct,
RANK() OVER (
PARTITION BY country
ORDER BY SUM(pass_count) * 100.0 /
SUM(case_count) ASC
) AS quality_rank
FROM validation_results
GROUP BY country, city, address_format
)
SELECT * FROM quality_scores
WHERE quality_rank <= 10 -- Bottom 10 per country
ORDER BY country, quality_pct ASC;
Designed optimized Athena queries for the serverless data pipeline, transforming raw S3 delivery data into partitioned Parquet tables. Implemented cost-efficient querying strategies cutting Athena costs by ~80%.
-- Optimized partitioned query for cost reduction
CREATE TABLE delivery_analytics
WITH (
format = 'PARQUET',
partitioned_by = ARRAY['country', 'year_month'],
external_location = 's3://data-lake/analytics/'
) AS
SELECT
delivery_id,
driver_id,
CAST(delivery_timestamp AS DATE) AS delivery_date,
delivery_time_minutes,
address_quality_score,
CASE
WHEN delivery_time_minutes > threshold THEN 'DELAYED'
ELSE 'ON_TIME'
END AS delivery_status,
country,
FORMAT_DATETIME(delivery_timestamp, 'yyyy-MM')
AS year_month
FROM raw_deliveries
WHERE delivery_timestamp >= DATE '2024-01-01'
AND country IN ('KSA', 'UAE', 'EGY');
A collection spanning Arabic NLP, Machine Learning, Cloud Architecture, and Data Analytics
Bilingual AI chatbot autonomously selecting tools (web search, translation, summarization, weather) for Arabic/English responses.
Scan Arabic documents, OCR extraction, LLM-powered structured field parsing, SQLite storage, and natural language search.
Bilingual RAG app with FAISS vector search; supports Ollama, Gemini, Bedrock; Arabic NLP for 10+ dialect variants.
Fine-tuned CAMeLBERT (92% accuracy) with negation handling and Gulf/Egyptian/Levantine dialect detection.
Extracts Arabic/English text from shipping images; parses address components with custom Arabic normalizer.
REST API normalising Arabic addresses across 10+ dialect variants; 75% fewer API calls via TTL cache; sub-200ms response.
ML-powered property valuation across 20 Dubai communities using Gradient Boosting (R² ~0.92) with confidence intervals.
Random Forest achieving 85%+ accuracy, 0.91 ROC-AUC on 10,000 MENA records; Streamlit app with risk gauge.
Isolation Forest + IQR + Z-Score consensus dashboard detecting delay spikes across 18 KSA/UAE/Egypt cities.
Serverless ETL: S3 → Lambda → Parquet → Glue → Athena; full IaC via CloudFormation; costs reduced ~80%.
4-page Power BI dashboard tracking KPIs across 21 MENA cities; DAX measures for delay rate, MoM trend, CAGR.
Advanced SQL (CTEs, window functions, ranking) analyzing 10,000+ records, surfacing delay cohorts and root-cause patterns.
I'm open to discussing data analytics, AI projects, or collaboration opportunities
Bangalore, Karnataka, India
Whether it's a data pipeline, Arabic NLP tool, or analytics dashboard — I'd love to hear about your project.