<?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: David Gitonga</title>
    <description>The latest articles on DEV Community by David Gitonga (@david_gitonga_2983).</description>
    <link>https://dev.to/david_gitonga_2983</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.us-east-2.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F4070899%2Fae6d0be0-1f9d-4832-8438-4fb66df1c6bc.jpg</url>
      <title>DEV Community: David Gitonga</title>
      <link>https://dev.to/david_gitonga_2983</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/david_gitonga_2983"/>
    <language>en</language>
    <item>
      <title>Building an Interactive Excel Dashboard for E-commerce Product Analysis , A Jumia case Study</title>
      <dc:creator>David Gitonga</dc:creator>
      <pubDate>Sat, 05 Sep 2026 14:19:46 +0000</pubDate>
      <link>https://dev.to/david_gitonga_2983/building-an-interactive-excel-dashboard-for-e-commerce-product-analysis-a-jumia-case-study-1gnm</link>
      <guid>https://dev.to/david_gitonga_2983/building-an-interactive-excel-dashboard-for-e-commerce-product-analysis-a-jumia-case-study-1gnm</guid>
      <description>&lt;h2&gt;
  
  
  Introduction
&lt;/h2&gt;

&lt;p&gt;For my first data analytics project, I have had the chance to work with a Jumia products dataset and used &lt;strong&gt;Excel&lt;/strong&gt; to turn the raw data into something that could actually be used to understand product performance.&lt;/p&gt;

&lt;p&gt;The main goal of the project was not just to clean it and make a pretty dashboard. I wanted to use the data to answer some simple questions about product pricing, discounts, ratings and reviews.&lt;/p&gt;

&lt;p&gt;some of the questions answered within the project were:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Do products with bigger discounts get more reviews?&lt;/li&gt;
&lt;li&gt;Do highly rated products get more engagements?&lt;/li&gt;
&lt;li&gt;Is there a relationship between price and rating?&lt;/li&gt;
&lt;li&gt;Which products have the highest rating and reviews?&lt;/li&gt;
&lt;li&gt;which products might need better pricing or marketing strategies?
This project also gave me a chance to practice some of the basic data analytics skill I have been learning, especially &lt;strong&gt;data cleaning, Excel formulas, PivotTables, Charts and Dashboard creation&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  THE DATASET
&lt;/h2&gt;

&lt;p&gt;The dataset contains products information from Jumia. The main columns I worked with were:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Product&lt;/li&gt;
&lt;li&gt;Current price&lt;/li&gt;
&lt;li&gt;Old price&lt;/li&gt;
&lt;li&gt;Discount&lt;/li&gt;
&lt;li&gt;Review &lt;/li&gt;
&lt;li&gt;Rating
The data was not completely ready for analysis, so I first had to inspect it and make some changes before building the dashboard&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;One important thing I kept in mind is that &lt;strong&gt;reviews are being used as a measure of engagement, not as actual sales data.&lt;/strong&gt; A product having more reviews does not automatically mean its more products.&lt;/p&gt;

&lt;h2&gt;
  
  
  The Raw Data
&lt;/h2&gt;

&lt;p&gt;I started by creating a &lt;strong&gt;Raw_Data&lt;/strong&gt; sheet.&lt;/p&gt;

&lt;p&gt;I kept this sheet as the original version of the dataset so that I could always go back to the starting point if something went wrong during cleaning.&lt;/p&gt;

&lt;p&gt;While checking the data, I noticed some issues such as &lt;strong&gt;duplicate records, price stored with currency text, price range and some missing reviews and rating values.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;I also found some products that appeared more than once with exactly the same information. &lt;/p&gt;

&lt;h2&gt;
  
  
  Cleaning the Data
&lt;/h2&gt;

&lt;p&gt;After checkinh the raw dat, I created a &lt;strong&gt;Cleaned_Data&lt;/strong&gt; sheet.&lt;br&gt;
The main cleaning steps include:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Removing exact duplicate records.
-Working with the price fields so the be used for calculations&lt;/li&gt;
&lt;li&gt;Making sure discount values could be used in calculation&lt;/li&gt;
&lt;li&gt;Checking rating and review values&lt;/li&gt;
&lt;li&gt;Keeping missing values blank instead of automatically treating them as zero&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also added some calculated fields that would help with the analysis.&lt;/p&gt;

&lt;p&gt;One of them was &lt;strong&gt;Discount Amount&lt;/strong&gt;,which shows the difference between the old price and current price.&lt;br&gt;
For example:&lt;br&gt;
&lt;code&gt;=old price-Current Price&lt;/code&gt;&lt;br&gt;
I also used categories to make some of the analysis easier to understand, such as rating categories, discount categories and price categories.&lt;/p&gt;

&lt;h2&gt;
  
  
  Using Excel for the Analysis
&lt;/h2&gt;

&lt;p&gt;once the data was prepared, i moved on to the analysis section.&lt;br&gt;
I calculated some of the basics statistics such as:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Total number of products&lt;/li&gt;
&lt;li&gt;Average current price&lt;/li&gt;
&lt;li&gt;Average old price&lt;/li&gt;
&lt;li&gt;Average discount&lt;/li&gt;
&lt;li&gt;Average rating&lt;/li&gt;
&lt;li&gt;Total reviews&lt;/li&gt;
&lt;li&gt;Highest product price&lt;/li&gt;
&lt;li&gt;Lowest product price
I also used correlation to look at the relationship between some of the variables.
which I looked at:
&lt;strong&gt;Discount vs Reviews&lt;/strong&gt;
&lt;strong&gt;Rating vs Reviews&lt;/strong&gt;
&lt;strong&gt;Current Price vs Rating&lt;/strong&gt;
&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;The purpose was to see whether there was a noticeable relationship between these variables.&lt;br&gt;
However, correlation doesn't mean that one variable caused another. It only helps show whether two variables tend to move together.&lt;/p&gt;

&lt;h2&gt;
  
  
  PivotTables and Charts
&lt;/h2&gt;

&lt;p&gt;After the calculation, I created PivoTables to make it easier to summarize the data.&lt;br&gt;
Some of the PivotTables looked at:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rating categories&lt;/li&gt;
&lt;li&gt;Discount categories&lt;/li&gt;
&lt;li&gt;Price categories&lt;/li&gt;
&lt;li&gt;Reviews by discount category&lt;/li&gt;
&lt;li&gt;Top products by rating&lt;/li&gt;
&lt;li&gt;Top products by reviews&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I then used these results to create charts.&lt;/p&gt;

&lt;h2&gt;
  
  
  Building the Dashboard
&lt;/h2&gt;

&lt;p&gt;The final step was putting the important information into or dashboard.&lt;br&gt;
I included KPI sections for things like:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Total Products&lt;/li&gt;
&lt;li&gt;Average Price &lt;/li&gt;
&lt;li&gt;Average Discount&lt;/li&gt;
&lt;li&gt;Average Rating&lt;/li&gt;
&lt;li&gt;Total Reviews&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I also included charts for the different relationships I investigated and tables showing some of top-performing products.&lt;/p&gt;

&lt;p&gt;I added slicers so that the dashboard could be filtered by categories such as &lt;strong&gt;Rating category, Discount Category and price category.&lt;/strong&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  Conclusion
&lt;/h2&gt;

&lt;p&gt;Overall, this project was a good way for me to practice the basic data analytics process using Excel.&lt;/p&gt;

&lt;p&gt;I started with raw Jumia product data, Cleaned and prepared it, analyzed the information, created PivotTables and finally build an interactive dashboard.&lt;/p&gt;

&lt;p&gt;This project also showed me that even a relatively simple dataset can provide useful insights when it is properly when it is properly organized and analyzed.&lt;/p&gt;

&lt;p&gt;This is one of my first steps in building my data analytics portfolio, and I plan to continue improving my skills by working on more projects using Excel, SQL, Python and other data analytics tools.&lt;/p&gt;

&lt;h3&gt;
  
  
  My GitHub project
&lt;/h3&gt;

&lt;p&gt;The complete project, including the dataset, Excel dashboard and project documentation, is available in my GitHub repository. [&lt;a href="https://github.com/gitosh-star/JUMIA_PRODUCTS_PERFOMANCE_DASHBOARD" rel="noopener noreferrer"&gt;https://github.com/gitosh-star/JUMIA_PRODUCTS_PERFOMANCE_DASHBOARD&lt;/a&gt;]&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>git</category>
      <category>opensource</category>
      <category>database</category>
    </item>
    <item>
      <title>GETTING STARTED WITH EXCEL FOR DATA ANALYTICS: FROM BASICS TO DATA CLEANING</title>
      <dc:creator>David Gitonga</dc:creator>
      <pubDate>Sat, 29 Aug 2026 18:32:41 +0000</pubDate>
      <link>https://dev.to/david_gitonga_2983/getting-started-with-excel-for-data-analytics-from-basics-to-data-cleaning-4b7</link>
      <guid>https://dev.to/david_gitonga_2983/getting-started-with-excel-for-data-analytics-from-basics-to-data-cleaning-4b7</guid>
      <description>&lt;h1&gt;
  
  
  EXCEL OVERVIEW
&lt;/h1&gt;

&lt;ul&gt;
&lt;li&gt;What is Excel? These is a spreadsheet tool for organizing, analyzing, calculating, and visualizing data.
Wiledy used for personal and professional data management.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  EXCEL INTERFACE
&lt;/h2&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0pk6de2hddrbizhssmkk.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2F0pk6de2hddrbizhssmkk.png" alt=" " width="800" height="475"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;This is an Excel workbook that usually subdivided into work sheets&lt;/li&gt;
&lt;/ul&gt;

&lt;ol&gt;
&lt;li&gt;Ribbon: Toolbar with commands(Home, insert, data..)
&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fg41wtgm72m9tj92em9op.png" alt=" " width="800" height="55"&gt;
&lt;/li&gt;
&lt;li&gt;Quick Access Toolbar: save, undo, redo.
&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fnxubdqvvr7n8rf76pcpu.png" alt=" " width="369" height="364"&gt;
&lt;/li&gt;
&lt;li&gt;Formula Bar: displays cell content&lt;/li&gt;
&lt;li&gt;Rows, columns, cells.
&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fto9hksd431y2cr2cnl56.jpg" alt=" " width="376" height="668"&gt;
&lt;/li&gt;
&lt;/ol&gt;

&lt;h3&gt;
  
  
  Data validation
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;The restrictions on the type of data user can input into a cell.
(Dropdown lists, Numbers , ranges, date limits, text length)
&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  THE DATA CLEANING
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Data cleaning is the process where you prepare raw datasets so they are accurate, consistent, and ready for analysis. This is a very crucial set because one gets to correct small errors , duplicates which may lead to misleading results in the formulas. Clean data ensures reliability and save time when performing deeper analysis.&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fanz9jl3g5mutmj0v2r0c.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fanz9jl3g5mutmj0v2r0c.png" alt=" " width="800" height="470"&gt;&lt;/a&gt; Raw uncleaned data&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmg113cq0fl0uuv5n5ds7.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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fmg113cq0fl0uuv5n5ds7.png" alt=" " width="800" height="468"&gt;&lt;/a&gt;Cleaned data&lt;/p&gt;

&lt;h2&gt;
  
  
  DATA CLEANING TECHNIQUES
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Removing duplicates: Prevents inflated results in analysis. &lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mombasa&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Mombasa&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Standardizing text this ensures consistency&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;NAIROBI&lt;/strong&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;NairoBi&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;checking dates: corrects inconsistent format and invalid entries, fixing words format: &lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;use &lt;strong&gt;PROPER()&lt;/strong&gt; to standardize capitalization in names.&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  DATA FORMARTTING &amp;amp; CLEANING
&lt;/h2&gt;

&lt;p&gt;&lt;strong&gt;Number Formatting&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;this changes how numbers display without altering their actual value
&lt;strong&gt;Conditional formatting&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt;This highlights cells automatically based on trends or criteria&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  CONCLUTION
&lt;/h2&gt;

&lt;p&gt;In conclusion data cleaning in excel is more the a technical step, it is the foundation of reliable analysis. This is a effective data cleaning turns Excel from a simple spreadsheet tool into a powerful engine for analytics.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>analytics</category>
      <category>database</category>
      <category>architecture</category>
    </item>
    <item>
      <title>Workflow Flow From Local Folder To GitHub</title>
      <dc:creator>David Gitonga</dc:creator>
      <pubDate>Fri, 21 Aug 2026 19:40:00 +0000</pubDate>
      <link>https://dev.to/david_gitonga_2983/workflow-flow-from-local-folder-to-github-1480</link>
      <guid>https://dev.to/david_gitonga_2983/workflow-flow-from-local-folder-to-github-1480</guid>
      <description>&lt;h2&gt;
  
  
  &lt;strong&gt;THE GITHUB PROJECT&lt;/strong&gt;
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Imagine while creating your repository on GitHub,
you remember that you have to include your excel file or any file that is all the way tacked in your folders and you want to use Git. 
How do you go about it.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  &lt;strong&gt;GIT&lt;/strong&gt;
&lt;/h3&gt;

&lt;p&gt;How does Git work;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;It use Linux , where you use SSH (Secure shell) which let you opens an encrypted terminal session to a remote machine in our case GitHub.&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  THIS IS THE TYPICAL WORKFLOW FROM START TO FINISH
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Get Git bash first&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Great now open &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;we need a local folder in our Git Bash we run the following commands;&lt;br&gt;
&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight shell"&gt;&lt;code&gt;- ssh - to create a remote login
- ssh-keygen &lt;span class="nt"&gt;-t&lt;/span&gt; &amp;lt;&lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="nt"&gt;-c&lt;/span&gt; &amp;lt;adress&amp;gt; - with the correct server_address
- &lt;span class="nb"&gt;ls&lt;/span&gt; &lt;span class="nt"&gt;-al&lt;/span&gt; ~/.shh- check &lt;span class="k"&gt;if &lt;/span&gt;you have added the new sshkey
- &lt;span class="nb"&gt;ls&lt;/span&gt; - which is listing the files and  directories &lt;span class="k"&gt;in &lt;/span&gt;the active directory
- &lt;span class="nb"&gt;cd&lt;/span&gt; - which opens a directory
- &lt;span class="nb"&gt;mkdir&lt;/span&gt; &amp;lt;name&amp;gt; - make a new directory
- &lt;span class="nb"&gt;touch &lt;/span&gt;file.text - to create an empty file
- nano file.text - write a comment or context of the data use &lt;span class="k"&gt;in &lt;/span&gt;place or &lt;span class="nt"&gt;-echo-&lt;/span&gt;
&lt;span class="o"&gt;{&lt;/span&gt;CREAT REPOSITORY ON GITHUB COPY SSH&lt;span class="o"&gt;}&lt;/span&gt;
- git remote add origin &amp;lt;ssh_key&amp;gt; - &lt;span class="nb"&gt;link &lt;/span&gt;to the remote server
- git commit - commit the &lt;span class="nb"&gt;link&lt;/span&gt;
- git status - check the branch
- git fetch - download a latest change 
- git push - to GitHub

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  CONCLUTION
&lt;/h2&gt;

&lt;p&gt;Git is easy once you understand the commands.&lt;br&gt;
Refresh your GitHub and watch as you have connected. &lt;/p&gt;

</description>
      <category>git</category>
      <category>github</category>
      <category>lux</category>
      <category>ssh</category>
    </item>
    <item>
      <title>Onboarding Session At Lux DevHq</title>
      <dc:creator>David Gitonga</dc:creator>
      <pubDate>Tue, 11 Aug 2026 12:10:02 +0000</pubDate>
      <link>https://dev.to/david_gitonga_2983/onboarding-session-at-lux-devhq-1b3i</link>
      <guid>https://dev.to/david_gitonga_2983/onboarding-session-at-lux-devhq-1b3i</guid>
      <description>&lt;h1&gt;
  
  
  Introduction to lux dev
&lt;/h1&gt;

&lt;p&gt;This are all the things I've learned today about how to write articles it's roles and how to ensure you write a good article&lt;br&gt;
&lt;strong&gt;asterisks for bold&lt;/strong&gt;&lt;br&gt;
&lt;em&gt;dash for italics&lt;/em&gt;&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;greater than for quotes &lt;/p&gt;
&lt;/blockquote&gt;

&lt;h2&gt;
  
  
  line of code
&lt;/h2&gt;

&lt;p&gt;&lt;code&gt;SELECT * FROM Cohort9,application;&lt;/code&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  writing a block of code
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight sql"&gt;&lt;code&gt;&lt;span class="k"&gt;SELECT&lt;/span&gt; &lt;span class="n"&gt;student&lt;/span&gt; &lt;span class="n"&gt;name_&lt;/span&gt;
&lt;span class="n"&gt;use&lt;/span&gt; &lt;span class="n"&gt;three&lt;/span&gt; &lt;span class="n"&gt;up&lt;/span&gt; &lt;span class="n"&gt;commas&lt;/span&gt; &lt;span class="k"&gt;for&lt;/span&gt; &lt;span class="n"&gt;a&lt;/span&gt; &lt;span class="n"&gt;block&lt;/span&gt; &lt;span class="k"&gt;of&lt;/span&gt; &lt;span class="n"&gt;code&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  photo session
&lt;/h2&gt;

&lt;p&gt;how to upload select from the upload icon, devto converts it to marklaguage&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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb45k0rlexe4w4k5v6bz5.webp" 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.us-east-2.amazonaws.com%2Fuploads%2Farticles%2Fb45k0rlexe4w4k5v6bz5.webp" alt=" " width="800" height="533"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;h2&gt;
  
  
  how to add a URL link
&lt;/h2&gt;

&lt;p&gt;This is the link to the luxdev git hub link&lt;br&gt;
link:&lt;a&gt;luxdevHQ&lt;/a&gt;&lt;/p&gt;

</description>
      <category>datascience</category>
    </item>
  </channel>
</rss>
