<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Janet Wafula</title>
    <description>The latest articles on DEV Community by Janet Wafula (@janet_wafula_3020dc01539c).</description>
    <link>https://dev.to/janet_wafula_3020dc01539c</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F3255063%2F0128818b-48ff-464c-8bc1-dc51546ce94a.jpg</url>
      <title>DEV Community: Janet Wafula</title>
      <link>https://dev.to/janet_wafula_3020dc01539c</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/janet_wafula_3020dc01539c"/>
    <language>en</language>
    <item>
      <title>RAG for Dummies: Making AI Smarter With Information Retrieval</title>
      <dc:creator>Janet Wafula</dc:creator>
      <pubDate>Tue, 23 Sep 2025 07:04:44 +0000</pubDate>
      <link>https://dev.to/janet_wafula_3020dc01539c/rag-for-dummies-making-ai-smarter-with-information-retrieval-58p1</link>
      <guid>https://dev.to/janet_wafula_3020dc01539c/rag-for-dummies-making-ai-smarter-with-information-retrieval-58p1</guid>
      <description>&lt;p&gt;Artificial intelligence tools like ChatGPT are great at generating text, but they don’t always “know” everything. Their knowledge is limited to what they were trained on, and that training data stops at a certain date. So, what happens if you want your AI to answer questions about new research, company documents, or yesterday’s news?&lt;/p&gt;

&lt;p&gt;That’s where RAG (Retrieval-Augmented Generation) comes in.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;What is RAG?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;RAG stands for Retrieval-Augmented Generation. It’s a technique that makes large language models (LLMs) smarter by connecting them to an external knowledge source.&lt;/p&gt;

&lt;p&gt;In simple terms:&lt;/p&gt;

&lt;p&gt;Retrieval = finding relevant information from a database, documents, or the internet.&lt;/p&gt;

&lt;p&gt;Generation = using that information to create a human-like answer.&lt;/p&gt;

&lt;p&gt;Think of it like this:&lt;br&gt;
Without RAG → The AI answers from memory only (like a student who studied months ago).&lt;br&gt;
With RAG → The AI can also look things up first before answering (like a student with access to textbooks and notes).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;How RAG Works (Step by Step)&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;User asks a question → e.g., “What are the key points of the Kenyan Constitution 2010?”&lt;/p&gt;

&lt;p&gt;Retriever searches → The system looks through a collection of documents, knowledge bases, or even the web.&lt;/p&gt;

&lt;p&gt;Relevant data is pulled out → Example: passages from the Constitution are retrieved.&lt;/p&gt;

&lt;p&gt;Generator creates an answer → The language model reads both the question and the retrieved passages, then produces a clear response.&lt;/p&gt;

&lt;p&gt;So instead of guessing, the AI grounds its answer in actual information.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why is RAG Important?&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Keeps AI updated → The model can access new information without retraining.&lt;/p&gt;

&lt;p&gt;Custom knowledge → You can feed it your company manuals, research papers, or private datasets.&lt;/p&gt;

&lt;p&gt;More accurate answers → Since the AI relies less on “hallucinations” (making things up).&lt;/p&gt;

&lt;p&gt;Flexible use cases → From customer support chatbots to legal assistants, healthcare tools, or research helpers.&lt;/p&gt;

&lt;p&gt;Simple Analogy&lt;/p&gt;

&lt;p&gt;Imagine you’re writing a school essay:&lt;/p&gt;

&lt;p&gt;Without RAG → You rely only on what’s in your head.&lt;/p&gt;

&lt;p&gt;With RAG → You open a library, find the right book, and then write a much better essay.&lt;/p&gt;

&lt;p&gt;That’s exactly how RAG boosts AI performance.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-World Examples of RAG&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Search-powered chatbots: A company chatbot that pulls answers from product FAQs.&lt;/p&gt;

&lt;p&gt;Legal assistants: Lawyers ask questions, and the AI retrieves relevant laws and past cases.&lt;/p&gt;

&lt;p&gt;Healthcare: Doctors query medical guidelines, and the AI provides evidence-based summaries.&lt;/p&gt;

&lt;p&gt;Research: Students ask about recent papers, and the AI retrieves the latest publications.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>My Take on Supervised Learning: Focus on Classification</title>
      <dc:creator>Janet Wafula</dc:creator>
      <pubDate>Sun, 24 Aug 2025 09:39:39 +0000</pubDate>
      <link>https://dev.to/janet_wafula_3020dc01539c/my-take-on-supervised-learning-focus-on-classification-3g9n</link>
      <guid>https://dev.to/janet_wafula_3020dc01539c/my-take-on-supervised-learning-focus-on-classification-3g9n</guid>
      <description>&lt;p&gt;Supervised learning is essentially about learning from examples. It’s called “supervised” because the data already contains the answers, guiding the model step by step until it can make predictions on its own.Supervised learning, to me, mirrors how humans make decisions. We don’t make choices in a vacuum; we rely on past examples. A doctor diagnoses a patient based on years of cases they’ve studied,machines do the same with labeled data.&lt;/p&gt;

&lt;p&gt;When we talk about classification, we’re dealing with problems where outcomes fall into distinct groups or classes. A classic case is fraud detection: the system must decide if a transaction is fraudulent or legitimate. The challenge lies in finding patterns in the features that point to one class over another.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Models We Use for Classification&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;KNN – classifies by “looking at neighbors.”&lt;/li&gt;
&lt;li&gt;Logistic Regression — Works well for binary classification (yes/no, spam/not spam). &lt;/li&gt;
&lt;li&gt;Decision Trees –A tree-like model where data is split into smaller groups it is clear, visual, and beginner-friendly.&lt;/li&gt;
&lt;li&gt;Random Forests – an ensemble that builds many decision trees and improves accuracy.&lt;/li&gt;
&lt;li&gt;SVMs – effective for complex, high-dimensional datasets.&lt;/li&gt;
&lt;li&gt;Neural Networks – best for large-scale, deep feature learning.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Personal views, insights and challenges I have faced while working with classification&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The biggest difficulty for me has been feature engineering. Sometimes the raw data isn’t enough, and the choice of features makes all the difference. Based on my last project on Car price prediction, I noticed that adding more features could improve the model's accuracy.What I love about classification is how it simplifies the messiness of life into categories.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Navigating the Trade-Off Between Type I and Type II Errors: A Medical Scenario</title>
      <dc:creator>Janet Wafula</dc:creator>
      <pubDate>Mon, 11 Aug 2025 12:55:19 +0000</pubDate>
      <link>https://dev.to/janet_wafula_3020dc01539c/navigating-the-trade-off-between-type-i-and-type-ii-errors-a-medical-scenario-3c5b</link>
      <guid>https://dev.to/janet_wafula_3020dc01539c/navigating-the-trade-off-between-type-i-and-type-ii-errors-a-medical-scenario-3c5b</guid>
      <description>&lt;p&gt;In the world of statistics and decision-making, particularly in critical fields like medicine, understanding the trade-off between Type I and Type II errors is essential. These errors, which occur in hypothesis testing, can have vastly different implications depending on the context. This article explores the trade-off between the two using a real-world medical example: screening for a life-threatening disease such as cancer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Understanding Type I and Type II Errors&lt;/strong&gt;&lt;br&gt;
Before diving into the medical scenario, let’s clarify what these errors are:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Type I Error (False Positive):&lt;/strong&gt; Rejecting a true null hypothesis. In medicine, this means diagnosing someone as having a disease when they actually don’t.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Type II Error (False Negative):&lt;/strong&gt; Failing to reject a false null hypothesis. In this case, a patient with the disease is mistakenly told they are healthy.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Medical Scenario: Cancer Screening&lt;/strong&gt;&lt;br&gt;
Imagine a new test for early-stage pancreatic cancer, a disease that is notoriously difficult to detect and deadly when caught late.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Null Hypothesis (H₀):&lt;/em&gt; The patient does not have cancer.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Alternative Hypothesis (H₁):&lt;/em&gt; The patient does have cancer.&lt;/p&gt;

&lt;p&gt;The diagnostic test must decide whether to reject or accept the null hypothesis based on the test result.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Consequences of Each Error&lt;/strong&gt;&lt;br&gt;
&lt;strong&gt;Type I Error (False Positive)&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Outcome:&lt;/em&gt; The test indicates the patient has cancer when they don’t.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Consequence&lt;/em&gt;: Emotional distress, costly and invasive follow-up procedures (like biopsies), and potential side effects from unnecessary treatments (e.g., chemotherapy).&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Systemic impact:&lt;/em&gt; Overburdened healthcare system due to treating non-cancer cases as cancer.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Type II Error (False Negative)&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;Outcome:&lt;/em&gt; The test fails to detect cancer in a patient who actually has it.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Consequence:&lt;/em&gt; Delayed treatment, disease progression to an untreatable stage, and significantly reduced survival rate.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Systemic impact:&lt;/em&gt; Higher mortality, public distrust in screening programs.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Where to Trade Off:&lt;/em&gt; Prioritizing Based on Context&lt;br&gt;
In medicine, the acceptable balance between these errors depends on the severity of the disease and the consequences of the errors.&lt;/p&gt;

&lt;p&gt;In life-threatening, fast-progressing diseases:&lt;br&gt;
Minimize Type II errors (i.e., false negatives).&lt;/p&gt;

&lt;p&gt;It is often better to err on the side of caution and accept a higher number of false positives (Type I errors).&lt;/p&gt;

&lt;p&gt;Why? Missing a true cancer diagnosis can be fatal. Early detection is key, even if it means further testing for some healthy patients.&lt;/p&gt;

&lt;p&gt;In our scenario, it would be wise to design the cancer screening test to be highly sensitive, even if that reduces its specificity slightly. This ensures that most true cancer cases are caught (low Type II error), though some healthy individuals may receive false alarms (higher Type I error).&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The Statistical Perspective&lt;/strong&gt;&lt;br&gt;
From a statistical design point of view:&lt;/p&gt;

&lt;p&gt;Alpha (α) is the probability of a Type I error.&lt;/p&gt;

&lt;p&gt;Beta (β) is the probability of a Type II error.&lt;/p&gt;

&lt;p&gt;The power of a test = 1 - β, representing the ability to correctly detect true positives.&lt;/p&gt;

&lt;p&gt;Tuning the test involves a trade-off:&lt;/p&gt;

&lt;p&gt;Reducing α often increases β, and vice versa.&lt;/p&gt;

&lt;p&gt;In critical cases like cancer screening, it's acceptable to set α at a slightly higher level (e.g., 0.05 or 0.10), to reduce β and increase the power of the test.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Real-World Implementation&lt;/strong&gt;&lt;br&gt;
PSA tests for prostate cancer and mammograms for breast cancer have historically faced this trade-off.&lt;/p&gt;

&lt;p&gt;Modern approaches, like machine learning in diagnostics, aim to optimize both sensitivity and specificity using large datasets and risk stratification.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion&lt;/strong&gt;&lt;br&gt;
Type I and Type II errors are more than academic concepts,they can mean life or death in medical decisions. In high-stakes scenarios like cancer diagnosis, the cost of a false negative is often far greater than that of a false positive. Hence, medical testing typically prioritizes reducing Type II errors, accepting a tolerable increase in Type I errors. Balancing these errors requires not only statistical precision but also ethical consideration, patient safety, and healthcare resource management.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>The Core Crew of Statistics: Meet Mean, Median, and Mode</title>
      <dc:creator>Janet Wafula</dc:creator>
      <pubDate>Wed, 23 Jul 2025 07:38:01 +0000</pubDate>
      <link>https://dev.to/janet_wafula_3020dc01539c/the-core-crew-of-statistics-meet-mean-median-and-mode-39fi</link>
      <guid>https://dev.to/janet_wafula_3020dc01539c/the-core-crew-of-statistics-meet-mean-median-and-mode-39fi</guid>
      <description>&lt;p&gt;When you first step into the world of data science, whether you’re analyzing the English Premier League table or Love Island voting patterns and also cleaning messy Excel sheets, you’ll come across one of the most fundamental ideas in statistics: measures of central tendency.&lt;/p&gt;

&lt;p&gt;These measures are mean, median and mode and are like the compass of data analysis. They help us understand where the "center" of the data lies, giving us a summary of a dataset in just a single number. As simple as they seem, they hold massive importance when it comes to building models, making predictions, and communicating findings.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are the Measures of Central Tendency?
&lt;/h2&gt;

&lt;h4&gt;
  
  
  Mean (Average)
&lt;/h4&gt;

&lt;p&gt;Add all the values and divide by the count.&lt;br&gt;
Useful for: datasets without extreme outliers.&lt;br&gt;
Example: If you have the ages of 5 islanders 21, 23, 24, 25, 70 the mean age is pulled up by that 70-year-old bombshell.&lt;/p&gt;

&lt;h4&gt;
  
  
  Median (Middle value)
&lt;/h4&gt;

&lt;p&gt;Sort the values, pick the middle one (or average of two middle values if even number of items).&lt;br&gt;
Useful when: your data has outliers or is skewed.&lt;br&gt;
Example: In the same age data, the median is 24, which better reflects the typical age of the islanders.&lt;/p&gt;

&lt;h4&gt;
  
  
  Mode (Most frequent value)
&lt;/h4&gt;

&lt;p&gt;The number that occurs most often.&lt;br&gt;
Useful when: you're working with categorical data or seeing popularity.&lt;br&gt;
Example: In Love Island votes, if most people vote for “Andreina”, then she’s the mode.&lt;/p&gt;

&lt;h2&gt;
  
  
  Why They Matter in Data Science
&lt;/h2&gt;

&lt;p&gt;As someone interested in working with raw data, cleaning it, and drawing insight, you’ll realize these three measures are often your first checkpoint. Here’s why:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1. They summarize big datasets quickly.&lt;/strong&gt;&lt;br&gt;
Whether it’s health data or financial transactions, instead of going through every row, a quick average or median gives you a starting point.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2.They help detect skewness or outliers.&lt;/strong&gt;&lt;br&gt;
If the mean is much higher than the median, you likely have a few large outliers. That’s a sign to investigate further before jumping to conclusions.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;3.They guide model building.&lt;/strong&gt;&lt;br&gt;
When preparing data for machine learning models, measures of central tendency often play a role in feature scaling, imputing missing values (like you asked with fillna()), and choosing thresholds.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;4.They make data storytelling easier.&lt;/strong&gt;&lt;br&gt;
Whether you're presenting to a team or writing a LinkedIn post about your latest Power BI dashboard, saying "the average customer age is 32" communicates way more than showing a list of 500 numbers&lt;/p&gt;

&lt;p&gt;Just like every story has a main character, every dataset has a center,a point that helps you make sense of everything else. Mean, median, and mode may seem like basic stats, but in data science, they are your first clues, your sanity check, and sometimes even your problem solvers&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Power BI:How relationships make your data make sense</title>
      <dc:creator>Janet Wafula</dc:creator>
      <pubDate>Wed, 18 Jun 2025 13:22:22 +0000</pubDate>
      <link>https://dev.to/janet_wafula_3020dc01539c/power-bihow-relationships-make-your-data-make-sense-1k43</link>
      <guid>https://dev.to/janet_wafula_3020dc01539c/power-bihow-relationships-make-your-data-make-sense-1k43</guid>
      <description>&lt;p&gt;When I first started using Power BI, I was excited about building dashboards and making data look presentable.But after a few times working with Power BI,I realized at the heart of every data model there are relationships.&lt;/p&gt;

&lt;h2&gt;
  
  
  What Are Relationships in Power BI?
&lt;/h2&gt;

&lt;p&gt;A relationship connects two tables based on a common column, allowing Power BI to combine data and filter it correctly.They act as links between tables, allowing you to filter data in one table based on selections in another&lt;/p&gt;

&lt;p&gt;Let’s say you have:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;A &lt;code&gt;Sales&lt;/code&gt; table with &lt;code&gt;CustomerID&lt;/code&gt; and order details&lt;/li&gt;
&lt;li&gt;A &lt;code&gt;Customers&lt;/code&gt; table with &lt;code&gt;CustomerID&lt;/code&gt; and names&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;By creating a relationship between these two tables on &lt;code&gt;CustomerID&lt;/code&gt;, you can analyze sales by customer name instead of just by ID. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;&lt;em&gt;Types of Relationships (and When I Use Them)&lt;/em&gt;&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Here are the three main types I’ve worked with:&lt;/p&gt;

&lt;h3&gt;
  
  
  1. One-to-Many (1:*)
&lt;/h3&gt;

&lt;p&gt;Most common. One customer, many sales. This is the most common type I use. One customer can have many sales, so their ID appears once in the Customers table but multiple times in the Sales table.&lt;/p&gt;

&lt;h3&gt;
  
  
  2. Many-to-Many
&lt;/h3&gt;

&lt;p&gt;Rare,but useful when both tables have duplicate values.&lt;/p&gt;

&lt;h3&gt;
  
  
  3. Many-to-One
&lt;/h3&gt;

&lt;p&gt;Many rows in the first table are related to one row in the second table.&lt;/p&gt;

&lt;h3&gt;
  
  
  4.One-to-one
&lt;/h3&gt;

&lt;p&gt;Each row in the first table is related to only one row in the second table.&lt;/p&gt;

&lt;h3&gt;
  
  
  Cross Filtering: One-Way or Both?
&lt;/h3&gt;

&lt;p&gt;When setting up a relationship, Power BI asks for the cross-filter direction:&lt;/p&gt;

&lt;p&gt;Single: Filters flow from one table to another (safe for most use cases).&lt;/p&gt;

&lt;p&gt;Both: Allows two-way filtering, great for complex models, but can slow things down or create loops.&lt;/p&gt;

&lt;p&gt;I stick with single filtering unless I know I need both directions.&lt;/p&gt;

&lt;h3&gt;
  
  
  Key Takeaways
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Always check Model view to see how your tables connect&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Use unique IDs in your lookup tables (like Customers or Products).&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Take time to learn relationships. They’re the foundation of everything else.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Learning Power BI isn’t just about dragging visuals onto a canvas,it’s about structuring your data so the story makes sense. Relationships are the quiet engine behind every great dashboard. They connect your tables, your insights, and your understanding of the bigger picture&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;




</description>
    </item>
    <item>
      <title>How Excel is Used in Real-World Data Analysis</title>
      <dc:creator>Janet Wafula</dc:creator>
      <pubDate>Tue, 10 Jun 2025 12:35:56 +0000</pubDate>
      <link>https://dev.to/janet_wafula_3020dc01539c/how-excel-is-used-in-real-world-data-analysis-5ebb</link>
      <guid>https://dev.to/janet_wafula_3020dc01539c/how-excel-is-used-in-real-world-data-analysis-5ebb</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Microsoft Excel is a tool used to analyze, interpret and visualize data.By organizing data using software like Excel, data analysts and other users can make information easier to view as data is added or changed.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Ways in which Excel is used in real-world data analysis&lt;/strong&gt;&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;Data entry and storage -Microsoft Excel is widely used for data entry and storage due to its user-friendly interface, flexibility, and powerful organizational features.Most businesses use excel for storing employee records and other information.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Business Decision-Making&lt;br&gt;
Businesses often rely on Excel to track sales data, monitor inventory levels, and forecast future trends. By analyzing historical data in Excel, companies can make more strategic decisions—such as when to launch a product or adjust pricing models.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;3.Reporting on Finances&lt;br&gt;
Excel is frequently used in accounting and finance to generate cash flow reports, income statements, and balance sheets. Financial analysts can assess a company's financial health and make budgetary decisions by using Excel to create models that forecast revenue and expenses.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Excel Features and how they can be applied&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;em&gt;PivotTables&lt;/em&gt;&lt;br&gt;
PivotTables are a powerful feature that summarize large datasets into easy-to-read tables. Businesses use PivotTables to break down sales by region, product category, or customer segment, making it easier to identify trends and outliers.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Charts (Column, Line, Pie, etc.)&lt;/em&gt;&lt;br&gt;
Charts in Excel are used to visualize data, making it easier to understand trends, patterns, and comparisons.&lt;/p&gt;

&lt;p&gt;&lt;em&gt;Power Query&lt;/em&gt;&lt;br&gt;
Cleans, transforms, and merges data from multiple sources.it is also an ETL tool&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Personal Reflection: How Learning Excel Changed the Way I See Data&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;Before learning Excel, I saw data as just confusing numbers. But Excel helped me understand that data can tell a story if it's organized and presented well. With tools like sorting, formulas, and charts, I learned how to quickly find patterns and make sense of information to derive insights and solve problems in real life.&lt;/p&gt;

&lt;p&gt;Charts, in particular, showed me how visuals can make data clearer and more impactful. Now, I use Excel not just to manage data, but to make better decisions in my daily life.&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
