Posts

One-Week Study Routine (Feb 6 – Feb 12)

  Thursday – Feb 6 (Ease-in Day) 60 min: Tableau End-to-End Project (continue where you stopped) 30–60 min (optional): Manual Testing video Win: You showed up Friday – Feb 7 (Gentle Progress) 90 min: Tableau Project 30 min: Rest / reflection Win: One small step forward Saturday – Feb 8 (Project Focus) 2 hrs: Data Analyst Project (Excel) Review cleaned data Write 3 simple observations Win: Touched the project Sunday – Feb 9 (Rest Day) Day off OR 20–30 min: Light Manual Testing video Win: Rest without guilt Monday – Feb 10 (Consistency) 90 min: Tableau Project 30 min: Manual Testing (only if tired) Win: Staying consistent Tuesday – Feb 11 (Confidence Day) 2 hrs: Tableau Project Finish one small section Win: Completion over perfection Wednesday – Feb 12 (Wrap-Up) 60–90 min: Tableau Project 15 min: Write what felt easy / heavy Plan next week

Cleaning Messy Survey Data as a Data Analyst (Excel Edition)

  Cleaning Messy Survey Data as a Data Analyst (Excel Edition) Title: Cleaning Messy Survey Data as a Data Analyst – Step by Step in Excel Introduction Have you ever received a dataset that looks like a total nightmare? Text, numbers, typos, missing values, inconsistent formats — the kind of data that makes you want to close Excel forever. Welcome to real-life data cleaning , a core skill for any data analyst. In my recent project, I worked on a survey about the invisible workload of working mothers , and I learned firsthand how to turn messy survey data into analysis-ready Excel tables . Here’s my process. Step 1: Prepare Your Workspace Always start by preserving the original raw data. Copy your raw Excel file: survey_responses_raw.xlsx → survey_responses_cleaned.xlsx Freeze the top row for easy scrolling ( View → Freeze Top Row ) Turn on filters ( Data → Filter ) to inspect and clean efficiently Why: This ensures that your raw data is always intact, so...

Data Cleaning Steps for Excel (Survey Project)

  1️⃣ Prepare Workspace Copy survey_responses_raw.xlsx → survey_responses_cleaned.xlsx Freeze top row to keep headers visible Turn on filters for easy inspection 2️⃣ Create Clean Columns Never overwrite raw columns Add _clean suffix for every column you clean Example: employment_type → employment_type_clean 3️⃣ Standardize Text Remove extra spaces → TRIM() Convert to lowercase → LOWER() Fix typos manually or using lookup table 4️⃣ Normalize Categories Map all variants to standard values using a lookup table Example: Full time , fulltime , FT → full_time 5️⃣ Convert Yes/No Fields Standardize binary columns → 1 = Yes, 0 = No Use Excel formula with IF() and OR() 6️⃣ Extract Numbers from Text Remove units, symbols, or extra characters Convert strings like 40 hrs , 45+ , <5 → numeric values 7️⃣ Convert Ranges to Averages Examples: 15-20 → 17.5, 10-12 → 11 Document assumptions for ambiguous values 8...

DATA analyst Project 1-invisible-load-working-mothers

  PHASE 1: Foundation (DONE / ALMOST DONE) ✅ 1. GitHub Setup Repository created Folder structure created README.md added (paste the content we prepared) 📌 Goal: Project looks real and professional from day one. PHASE 2: Define the Problem (VERY IMPORTANT) 2. Write Survey Questions ( survey/survey_questions.md ) You will define: Who the survey is for What you are measuring How each question maps to analysis Sections to include: Demographics (age range, number of kids, job type) Paid work hours Unpaid work hours Mental load (planning, remembering, coordinating) Support system Well-being (stress, burnout, sleep) Career & dreams 📌 This controls your entire analysis. PHASE 3: Data Collection 3. Create Survey Tool: Google Forms or Typeform Make responses anonymous Use scales (1–5) where possible 4. Collect Data Share quietly (DMs, small groups) No pressure on numbers Target: 50–100 responses 5. Sav...

My Data Analyst Learning Roadmap

  Introduction to My Data Analytics Journey Hi everyone! 👋 I’m Shama , and this blog marks the beginning of my journey to becoming a Data Analyst . I’ve always been curious about how data turns into insights that drive real-world decisions — from predicting trends to improving business performance. So, I decided to document my learning path step by step, sharing everything I learn along the way: tools, skills, mini projects, and reflections. If you’re also starting your journey in data analytics, I hope this blog helps you learn with me. 🌱 🔍 My Data Analyst Skills Roadmap Here’s the list of skills and tools I’ll be learning (and blogging about) in the coming weeks and months. 📍 Phase 1: Foundations Goal: Understand what data analysis is and build a strong base. What is Data Analytics? Understanding Data Types and the Data Lifecycle Learning Excel for Data Cleaning & Basic Analysis Introduction to Statistics – Mean, Median, Mode, Correlation, etc. ?...