I'm TJ, a detail-oriented professional with a Bachelor's in Computer Science and hands-on experience in data entry, data enrichment, and online research. My recent work involved gathering and verifying influencer data, correcting mismatched information, and organizing datasets to ensure accuracy and consistency for client use.
I also have strong foundational skills in data analysis, including Python, SQL, Excel (Power Query, PivotTables), and Power BI — which I use to clean, analyze, and present data through dashboards and reports. I'm certified in Excel Data Management and SQL, supporting my ability to handle structured data with precision.
My background in web development (PHP, MySQL) gave me a solid understanding of database structures, while technical support work sharpened my analytical and problem-solving skills — both of which I apply to data validation and quality checks.
I'm now looking for a role where I can combine my data entry accuracy, research skills, and light data analysis experience to support operations, maintain data integrity, and contribute to team goals.
Project Description: Analyzed international students' mental health data from a Japanese university survey to determine if studying in a different country affects mental health. The study found that international students have higher risks of mental health difficulties, with social connectedness and acculturation stress being predictive of depression.
-- Compare depression scores by student type
SELECT inter_dom,
ROUND(AVG(todep), 2) as avg_depression,
ROUND(AVG(tosc), 2) as avg_social_connect,
ROUND(AVG(toas), 2) as avg_accult_stress
FROM students
GROUP BY inter_dom;
-- Analyze impact of stay duration on mental health
SELECT stay,
COUNT(inter_dom) as student_count,
ROUND(AVG(todep), 2) as average_phq9,
ROUND(AVG(tosc), 2) as average_scs,
ROUND(AVG(toas), 2) as average_asss
FROM students
WHERE inter_dom = 'Inter'
GROUP BY stay
ORDER BY stay;
Project Description: Analyzed international debt statistics collected by The World Bank to understand debt patterns across developing countries. The dataset contained information about debt amounts (in USD) owed by countries across various debt indicator categories, providing insights into global economic dependencies and financial obligations.
-- 1. Count distinct countries in the database
SELECT COUNT(DISTINCT country_name) as total_distinct_countries
FROM international_debt;
-- 2. Find country with highest total debt
SELECT country_name, SUM(debt) as total_debt
FROM international_debt
GROUP BY country_name
ORDER BY total_debt DESC
LIMIT 1;
-- 3. Find country with lowest principal repayments
SELECT country_name, indicator_name, MIN(debt) as lowest_repayment
FROM international_debt
WHERE indicator_code = 'DT.AMT.DLXF.CD'
GROUP BY country_name, indicator_name
ORDER BY lowest_repayment ASC
LIMIT 1;
-- 4. Analyze debt by indicator categories
SELECT indicator_name, COUNT(*) as country_count,
ROUND(AVG(debt), 2) as average_debt,
SUM(debt) as total_debt_by_indicator
FROM international_debt
GROUP BY indicator_name
ORDER BY total_debt_by_indicator DESC
LIMIT 10;
Project Description: Comprehensive analysis of bike sales data to identify customer demographics and purchasing trends. Developed an interactive dashboard with dynamic filtering capabilities to extract actionable insights into consumer behavior.
Project Description: Developed a comprehensive Personal Budget Tracker system for monitoring income, expenses, and cash flow. Implemented automated calculations and interactive dashboard features for real-time financial health assessment.
Project Description: In-depth analysis of Data Professional Survey data, uncovering industry trends, compensation patterns, and career development insights across the data analytics field.
Project Description: Comprehensive analysis of academic stress indicators among student populations, identifying key contributing factors and patterns across diverse educational contexts and demographic segments.
Excel: Pivot Tables, Power Query, Charts, Data Validation, Slicers
Power BI: DAX, Power Query, Interactive Dashboards
Google Sheets: Advanced Formulas, Automation, Data Visualization
Python: Data Analysis, Pandas, Data Processing
PostgreSQL: SQL Queries, Data Analysis, Statistical Reporting
SQL: Database Querying, Data Retrieval, Complex Queries
PostgreSQL: Advanced Analytics, Statistical Functions
Data Cleaning & Validation
Data Transformation & Processing
Automated Calculations & Reporting
Data Entry: High Accuracy, Speed, Attention to Detail
Online Research: Information Gathering, Data Verification
Statistical Analysis & Insights Generation
Mental Health Data Analysis & Research
Interactive Reporting & Dashboard Creation