<?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>Forem: Nicholus Rana</title>
    <description>The latest articles on Forem by Nicholus Rana (@nicholus_rana).</description>
    <link>https://forem.com/nicholus_rana</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%2F3507218%2F71d34041-8641-447f-a188-6edf3a92f9d0.png</url>
      <title>Forem: Nicholus Rana</title>
      <link>https://forem.com/nicholus_rana</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/nicholus_rana"/>
    <language>en</language>
    <item>
      <title>Healthcare Analytics Dashboard in Power BI Using PostgreSQL</title>
      <dc:creator>Nicholus Rana</dc:creator>
      <pubDate>Mon, 08 Dec 2025 17:29:08 +0000</pubDate>
      <link>https://forem.com/nicholus_rana/healthcare-analytics-dashboard-in-power-bi-using-postgresql-2cia</link>
      <guid>https://forem.com/nicholus_rana/healthcare-analytics-dashboard-in-power-bi-using-postgresql-2cia</guid>
      <description>&lt;p&gt;This project demonstrates how to build a complete Healthcare Analytics Dashboard in Power BI using PostgreSQL (local or Aiven). It covers database connection, data import, cleaning, modeling, measures, dashboard design, and scheduled refresh.&lt;/p&gt;




&lt;h2&gt;
  
  
  1. Overview
&lt;/h2&gt;

&lt;p&gt;The solution provides an end-to-end analytics workflow for healthcare operations, financials, and patient insights. It uses three curated PostgreSQL staging views and a clean Power BI star-schema model.&lt;/p&gt;




&lt;h2&gt;
  
  
  2. Prerequisites
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Tools Required:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Power BI Desktop
&lt;/li&gt;
&lt;li&gt;PostgreSQL (Local or Aiven)
&lt;/li&gt;
&lt;li&gt;Npgsql PostgreSQL Connector
&lt;/li&gt;
&lt;li&gt;SQL client (pgAdmin or DBeaver)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Data Source:&lt;/strong&gt;  &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Appointments
&lt;/li&gt;
&lt;li&gt;Patients
&lt;/li&gt;
&lt;li&gt;Doctors
&lt;/li&gt;
&lt;li&gt;Admissions
&lt;/li&gt;
&lt;li&gt;Bills&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  3. Connecting Power BI to PostgreSQL
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Local PostgreSQL
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Server: &lt;code&gt;localhost:5432&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Database: your database name
&lt;/li&gt;
&lt;li&gt;Authentication: Database
&lt;/li&gt;
&lt;li&gt;Encryption: optional
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Power BI Steps:&lt;/strong&gt;  &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Get Data → PostgreSQL
&lt;/li&gt;
&lt;li&gt;Enter server and database credentials → Connect&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftgkbhlsu08he7y0tu64s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Ftgkbhlsu08he7y0tu64s.png" alt="Database Connection" width="800" height="419"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjgp1pp4f0w9145208ilh.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fjgp1pp4f0w9145208ilh.png" alt="Database Connection" width="800" height="407"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Aiven PostgreSQL
&lt;/h3&gt;

&lt;ol&gt;
&lt;li&gt;Download and install the Aiven CA certificate into Windows Trusted Root.
&lt;/li&gt;
&lt;li&gt;Power BI connection settings:

&lt;ul&gt;
&lt;li&gt;Server: &lt;code&gt;&amp;lt;yourhost&amp;gt;.aivencloud.com:&amp;lt;port&amp;gt;&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Database: &lt;code&gt;defaultdb&lt;/code&gt;
&lt;/li&gt;
&lt;li&gt;Encryption: on
&lt;/li&gt;
&lt;li&gt;Authentication: Database
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ol&gt;




&lt;h2&gt;
  
  
  4. PostgreSQL Staging Views
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Views Imported into Power BI:&lt;/strong&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  1. Appointments_Enriched
&lt;/h3&gt;

&lt;p&gt;Contains:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;AppointmentID
&lt;/li&gt;
&lt;li&gt;PatientID
&lt;/li&gt;
&lt;li&gt;DoctorID
&lt;/li&gt;
&lt;li&gt;AppointmentDate
&lt;/li&gt;
&lt;li&gt;Normalized Status
&lt;/li&gt;
&lt;li&gt;Patient Name
&lt;/li&gt;
&lt;li&gt;Doctor Name
&lt;/li&gt;
&lt;li&gt;Specialization
&lt;/li&gt;
&lt;li&gt;AppointmentDateOnly (Date extracted)&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  2. Patient_Balances
&lt;/h3&gt;

&lt;p&gt;Aggregates per patient:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;TotalBilled
&lt;/li&gt;
&lt;li&gt;TotalPaid
&lt;/li&gt;
&lt;li&gt;TotalOutstanding&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  3. Doctor_Monthly_Metrics
&lt;/h3&gt;

&lt;p&gt;For each doctor per month:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;TotalAppointments
&lt;/li&gt;
&lt;li&gt;CancelledAppointments
&lt;/li&gt;
&lt;li&gt;CancellationRate&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  5. Data Cleaning in Power Query
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Steps:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rename columns for readability
&lt;/li&gt;
&lt;li&gt;Set correct data types (Date, Decimal, Text)
&lt;/li&gt;
&lt;li&gt;Trim and clean text fields
&lt;/li&gt;
&lt;li&gt;Replace blanks with nulls
&lt;/li&gt;
&lt;li&gt;Add helper columns: Year, Month, Year-Month
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Close &amp;amp; Apply changes.&lt;/p&gt;




&lt;h2&gt;
  
  
  6. Data Modeling
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Fact Tables
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Appointments_Enriched
&lt;/li&gt;
&lt;li&gt;Doctor_Monthly_Metrics
&lt;/li&gt;
&lt;li&gt;Patient_Balances&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Dimensions
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;DimDate (generated in Power BI)
&lt;/li&gt;
&lt;li&gt;Patients
&lt;/li&gt;
&lt;li&gt;Doctors&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Key Relationships
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Appointments_Enriched → DimDate (AppointmentDateOnly → Date)
&lt;/li&gt;
&lt;li&gt;Appointments_Enriched → Patient_Balances (PatientID → PatientID)
&lt;/li&gt;
&lt;li&gt;Appointments_Enriched → Doctor_Monthly_Metrics (DoctorID + MonthStart)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;DimDate is marked as the official Date Table.&lt;/p&gt;




&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq69bnnux0w9batoij19g.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fq69bnnux0w9batoij19g.png" alt="Database Connection" width="800" height="384"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  7. Dashboard Pages
&lt;/h2&gt;

&lt;h3&gt;
  
  
  Page 1 — Executive Overview
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;KPIs: Total Appointments, Cancellation Rate, Total Billed, Total Outstanding
&lt;/li&gt;
&lt;li&gt;Trend chart: Appointments by Month
&lt;/li&gt;
&lt;li&gt;Bar chart: Top 10 Specializations
&lt;/li&gt;
&lt;li&gt;Filters: Year, Month&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcnkd5h3ovyh78jobclld.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fcnkd5h3ovyh78jobclld.png" alt="Database Connection" width="800" height="457"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Page 2 — Operations &amp;amp; Scheduling
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Upcoming Appointments Table
&lt;/li&gt;
&lt;li&gt;Heatmap: Hour of Day × Weekday
&lt;/li&gt;
&lt;li&gt;Bar chart: Cancellation Rate by Doctor&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmy180043ywnbppj0f2gg.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fmy180043ywnbppj0f2gg.png" alt="Database Connection" width="800" height="454"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h3&gt;
  
  
  Page 3 — Financials
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;KPIs: Total Billed, Total Paid, Total Outstanding
&lt;/li&gt;
&lt;li&gt;Clustered Column + Line Chart:

&lt;ul&gt;
&lt;li&gt;Columns: Billed, Paid
&lt;/li&gt;
&lt;li&gt;Line: Outstanding
&lt;/li&gt;
&lt;li&gt;Axis: Year-Month
&lt;/li&gt;
&lt;/ul&gt;


&lt;/li&gt;

&lt;li&gt;Top 20 Patients by Outstanding Balance&lt;/li&gt;

&lt;/ul&gt;

&lt;h3&gt;
  
  
  Page 4 — Doctor Performance
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;KPI: Avg Appointments per Doctor
&lt;/li&gt;
&lt;li&gt;Doctor Monthly Metrics Table
&lt;/li&gt;
&lt;li&gt;Scatter Plot: Appointments vs Cancellation Rate&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  Page 5 — Patient Insights
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Visit Distribution Histogram
&lt;/li&gt;
&lt;li&gt;Demographic Slicers (Insurance, Segment, Gender, Region)
&lt;/li&gt;
&lt;li&gt;Patient Balances Table with drillthrough to appointments&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  8. Publishing and Refresh
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Publishing:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Power BI Desktop → Publish → Select workspace&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Scheduled Refresh:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Power BI Service → Dataset Settings → Enter credentials → Configure refresh frequency
&lt;/li&gt;
&lt;li&gt;Aiven: Ensure firewall allows Power BI IPs
&lt;/li&gt;
&lt;li&gt;Local PostgreSQL: Install Personal Gateway&lt;/li&gt;
&lt;/ul&gt;




</description>
      <category>analytics</category>
      <category>postgres</category>
      <category>tutorial</category>
      <category>datascience</category>
    </item>
    <item>
      <title>Is Excel Still Relevant in the Era of Power BI and Python?</title>
      <dc:creator>Nicholus Rana</dc:creator>
      <pubDate>Sun, 05 Oct 2025 09:58:12 +0000</pubDate>
      <link>https://forem.com/nicholus_rana/is-excel-still-relevant-in-the-era-of-power-bi-and-python-1566</link>
      <guid>https://forem.com/nicholus_rana/is-excel-still-relevant-in-the-era-of-power-bi-and-python-1566</guid>
      <description>&lt;h2&gt;
  
  
  📊 Is Excel Still Relevant in the Era of Power BI and Python?
&lt;/h2&gt;

&lt;p&gt;In today’s data-driven world, tools like Power BI and Python have revolutionized how we analyze, visualize, and automate data workflows. But does that mean Excel — the long-standing favorite — is becoming obsolete?&lt;/p&gt;

&lt;p&gt;Let’s find out.&lt;/p&gt;




&lt;h2&gt;
  
  
  💼 Excel: The Classic Powerhouse
&lt;/h2&gt;

&lt;p&gt;For decades, Microsoft Excel has been the go-to tool for data entry, analysis, and reporting. Its simplicity, flexibility, and wide availability have made it a global standard in business and education alike.&lt;/p&gt;

&lt;p&gt;Even today, millions of professionals rely on Excel for:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Budgeting and forecasting
&lt;/li&gt;
&lt;li&gt;Data cleaning and manipulation
&lt;/li&gt;
&lt;li&gt;Quick visualizations and dashboards
&lt;/li&gt;
&lt;li&gt;Reporting and data tracking
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Excel’s familiar interface and low learning curve make it unbeatable for quick, everyday tasks.&lt;/p&gt;




&lt;h2&gt;
  
  
  🚀 The Rise of Power BI
&lt;/h2&gt;

&lt;p&gt;Power BI, Microsoft’s advanced analytics and visualization tool, builds upon Excel’s foundations but takes things to a whole new level. It allows users to connect to multiple data sources, automate refreshes, and create interactive dashboards in minutes.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Key advantages of Power BI:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Real-time data connections
&lt;/li&gt;
&lt;li&gt;Automated updates
&lt;/li&gt;
&lt;li&gt;Interactive and shareable reports
&lt;/li&gt;
&lt;li&gt;AI-driven insights
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;For organizations managing large datasets and requiring collaboration, Power BI offers scalability and sophistication Excel alone cannot match.&lt;/p&gt;




&lt;h2&gt;
  
  
  🐍 Python: The Analyst’s Secret Weapon
&lt;/h2&gt;

&lt;p&gt;Python has emerged as the go-to language for data scientists, analysts, and developers. With libraries like &lt;strong&gt;Pandas&lt;/strong&gt;, &lt;strong&gt;NumPy&lt;/strong&gt;, and &lt;strong&gt;Matplotlib&lt;/strong&gt;, Python brings automation and advanced analytics capabilities that Excel can’t handle natively.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Why Python is powerful:&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Handles millions of records efficiently
&lt;/li&gt;
&lt;li&gt;Enables automation through scripts
&lt;/li&gt;
&lt;li&gt;Integrates with machine learning and AI
&lt;/li&gt;
&lt;li&gt;Open-source and highly customizable
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;While Excel is great for manual exploration, Python excels in reproducibility, scalability, and automation.&lt;/p&gt;




&lt;h2&gt;
  
  
  ⚖️ Excel vs Power BI vs Python
&lt;/h2&gt;

&lt;div class="table-wrapper-paragraph"&gt;&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Feature&lt;/th&gt;
&lt;th&gt;Excel&lt;/th&gt;
&lt;th&gt;Power BI&lt;/th&gt;
&lt;th&gt;Python&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;Ease of Use&lt;/td&gt;
&lt;td&gt;⭐⭐⭐⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Automation&lt;/td&gt;
&lt;td&gt;⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐⭐⭐⭐&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Visualization&lt;/td&gt;
&lt;td&gt;⭐⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐⭐⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐⭐⭐&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Scalability&lt;/td&gt;
&lt;td&gt;⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐⭐⭐⭐&lt;/td&gt;
&lt;td&gt;⭐⭐⭐⭐⭐&lt;/td&gt;
&lt;/tr&gt;
&lt;tr&gt;
&lt;td&gt;Cost&lt;/td&gt;
&lt;td&gt;💰&lt;/td&gt;
&lt;td&gt;💰💰&lt;/td&gt;
&lt;td&gt;Free&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;&lt;/div&gt;

&lt;p&gt;Each tool shines in its own space. Excel remains unmatched in accessibility, Power BI excels in visualization, and Python dominates in automation and scalability.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧩 The Perfect Combo
&lt;/h2&gt;

&lt;p&gt;Rather than replacing Excel, Power BI and Python complement it. In fact, Excel now integrates with both:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;
&lt;strong&gt;Power BI datasets&lt;/strong&gt; can be analyzed directly in Excel.&lt;/li&gt;
&lt;li&gt;
&lt;strong&gt;Python scripts&lt;/strong&gt; can run inside Excel (as of 2024 updates in Microsoft 365).&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;This synergy means you can clean your data with Python, visualize it with Power BI, and share quick insights in Excel — all within the same workflow.&lt;/p&gt;




&lt;h2&gt;
  
  
  🧠 Final Thoughts
&lt;/h2&gt;

&lt;p&gt;Excel isn’t going anywhere. It’s evolving.&lt;br&gt;&lt;br&gt;
While Power BI and Python dominate advanced analytics, Excel remains the universal language of business — now smarter, more connected, and more powerful than ever.&lt;/p&gt;

&lt;p&gt;In short:  &lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;🔹 Use &lt;strong&gt;Excel&lt;/strong&gt; for simplicity&lt;br&gt;&lt;br&gt;
🔹 Use &lt;strong&gt;Power BI&lt;/strong&gt; for insights&lt;br&gt;&lt;br&gt;
🔹 Use &lt;strong&gt;Python&lt;/strong&gt; for automation  &lt;/p&gt;
&lt;/blockquote&gt;

&lt;p&gt;Together, they form a modern analyst’s ultimate toolkit.&lt;/p&gt;




&lt;p&gt;&lt;em&gt;💡 Written by Rana Nicholus — Tech Enthusiast &amp;amp; Data Professional passionate about digital transformation and analytics.&lt;/em&gt;&lt;/p&gt;

</description>
      <category>excel</category>
      <category>powerbi</category>
      <category>python</category>
      <category>dataanalytics</category>
    </item>
  </channel>
</rss>
