<?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: Bambo</title>
    <description>The latest articles on DEV Community by Bambo (@bambadij).</description>
    <link>https://dev.to/bambadij</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%2F1125335%2F5e6909db-2583-49f1-b864-7e0ddb085f82.png</url>
      <title>DEV Community: Bambo</title>
      <link>https://dev.to/bambadij</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/bambadij"/>
    <language>en</language>
    <item>
      <title>Discovering AWS CodeWhisperer: Automatically Generate Code Suggestions</title>
      <dc:creator>Bambo</dc:creator>
      <pubDate>Mon, 16 Sep 2024 01:40:13 +0000</pubDate>
      <link>https://dev.to/bambadij/discovering-aws-codewhisperer-automatically-generate-code-suggestions-31g2</link>
      <guid>https://dev.to/bambadij/discovering-aws-codewhisperer-automatically-generate-code-suggestions-31g2</guid>
      <description>&lt;p&gt;&lt;a href="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdc1jp2fon2bnb79tluhz.PNG" class="article-body-image-wrapper"&gt;&lt;img src="https://media.dev.to/cdn-cgi/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fdc1jp2fon2bnb79tluhz.PNG" alt="Image description" width="800" height="555"&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Introduction&lt;/strong&gt;&lt;br&gt;
In the world of software development, automation is key to speeding up the coding process. AWS CodeWhisperer is a tool that allows developers to generate code based on their environment, context, and comments. Not only does it save time, but it also helps avoid common errors. Today, we’ll explore how to use AWS CodeWhisperer to automatically generate Python code.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;What is AWS CodeWhisperer?&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
AWS CodeWhisperer is an AI-powered code generator integrated into popular IDEs such as VS Code, JetBrains, and AWS Cloud9. It analyzes your code context and provides auto-completion suggestions. Whether you need to generate functions, fix bugs, or write tests, AWS CodeWhisperer can help. Simply place your cursor where you want code suggestions, add a comment, and let CodeWhisperer do the rest.&lt;/p&gt;

&lt;p&gt;*&lt;em&gt;Example: Generating Code with AWS CodeWhisperer&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Let’s look at an example where we want to generate a function to search for a user from a list.&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;`# TODO: place your cursor at the end of line 5 and press Enter to generate a suggestion.
# Tip: press Tab to accept the suggestion

fake_users = [
    { "name": "User 1", "id": "user1", "city": "San Francisco", "state": "CA" },]

def get_user_by_id(user_id):
    # Place your cursor here and press Enter. CodeWhisperer will automatically suggest the rest of the function.
`
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;*&lt;em&gt;How Does It Work?&lt;br&gt;
*&lt;/em&gt;&lt;br&gt;
Step 1: Create your basic structure as shown above.&lt;br&gt;
Step 2: Position your cursor at the end of line 5, where you want CodeWhisperer to generate code.&lt;br&gt;
Step 3: Press 'Enter' or write a comment like # TODO: Complete the function, and CodeWhisperer will analyze the context and suggest code.&lt;br&gt;
Step 4: Press Tab to accept the suggestion.&lt;br&gt;
*&lt;em&gt;AWS CodeWhisperer might generate a complete function like this:&lt;br&gt;
*&lt;/em&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--JUaFhb5p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/..." class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--JUaFhb5p--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/..." alt="Uploading image" width="" height=""&gt;&lt;/a&gt;&lt;br&gt;
&lt;strong&gt;Benefits of CodeWhisperer&lt;br&gt;
**&lt;br&gt;
Time-Saving: It can quickly generate solutions without needing you to type every line.&lt;br&gt;
Error Reduction: Suggestions are based on best practices and context, reducing the likelihood of mistakes.&lt;br&gt;
Machine Learning: The more you use it, the better it gets at understanding your coding style and providing tailored suggestions.&lt;br&gt;
**Conclusion&lt;/strong&gt;&lt;br&gt;
AWS CodeWhisperer is a game-changing tool for developers looking to boost their productivity. By generating intelligent code suggestions based on the context of your project, it helps you write code faster and with fewer errors. Try it today and see how it can transform your coding workflow.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Exploratory Data Analysis for Indian Startup Ecosystem- A Visualization Approach of Indian Startup Ecosystem Funding (2018–2021)</title>
      <dc:creator>Bambo</dc:creator>
      <pubDate>Mon, 24 Jul 2023 03:02:37 +0000</pubDate>
      <link>https://dev.to/bambadij/exploratory-data-analysis-for-indian-startup-ecosystem-a-visualization-approach-of-indian-startup-ecosystem-funding-2018-2021-24ok</link>
      <guid>https://dev.to/bambadij/exploratory-data-analysis-for-indian-startup-ecosystem-a-visualization-approach-of-indian-startup-ecosystem-funding-2018-2021-24ok</guid>
      <description>&lt;p&gt;&lt;strong&gt;Introduction&lt;/strong&gt;&lt;br&gt;
In this comprehensive article, I will provide a detailed summary of my investigation into the funding patterns of Indian startups from 2018 to 2021. As a data scientist, I meticulously analyzed the data, following The Cross Industry Standard Process for Data Mining (CRISP-DM) methodology, to gain deep insights into the Indian startup ecosystem.&lt;br&gt;
The main goal of this research was to explore the dynamics of the Indian startup landscape, identify key trends, and understand which industries were most likely to secure significant funding during the specified period. With these valuable insights, I intend to offer well-founded recommendations to a fictional team eager to enter the Indian startup ecosystem.&lt;br&gt;
Through rigorous data analysis and visualization, I am to provide practical and actionable insights that can guide decision-making processes and facilitate the team’s success in navigating the vibrant and dynamic world of Indian startups. Let’s delve into the findings and discoveries from this intriguing exploration.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Business Understanding.&lt;/strong&gt;&lt;br&gt;
The Indian startup ecosystem has witnessed extraordinary growth, bolstered by India’s rapidly expanding economy and the emergence of numerous influential unicorn startups on the global stage. Despite their size, startups wield a profound impact on economic growth, creating jobs and fostering a robust employment market, leading to a healthier economy. Moreover, they serve as catalysts for economic vitality by driving innovation and fostering healthy competition.The overarching goal of this project is to provide valuable insights to key stakeholders eager to venture into the Indian startup ecosystem. By meticulously analyzing crucial funding metrics, we aim to equip management teams with the knowledge necessary for making well-informed and impactful business decisions. Armed with data-driven insights, stakeholders can confidently steer their ventures toward success in the thriving and competitive Indian startup ecosystem.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Hypothesis&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Null&lt;/strong&gt;: Technological industries do not have a higher success rate of being funded.&lt;br&gt;
&lt;strong&gt;Alternate&lt;/strong&gt;: Technological industries have a higher success rate of being funded.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Research Questions:&lt;/strong&gt;   &lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;How has funding to startups changed over the period?&lt;/li&gt;
&lt;li&gt;How does location affect funding to startups?&lt;/li&gt;
&lt;li&gt;Which sectors are most favored by investors?&lt;/li&gt;
&lt;li&gt;What is the average amount of funding for start-ups in the 
sector with the most funding, and the location with the most 
funding?&lt;/li&gt;
&lt;li&gt;How does the breakdown by stages of funding look?&lt;/li&gt;
&lt;li&gt;Which start-ups were most favored by investors?&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;&lt;strong&gt;Data Preparation and Processing&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;At this stage, we organize the data to make it fit for analysis. Cleanliness and consistency of data are the objectives here.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Loading packages&lt;/strong&gt;&lt;br&gt;
To start with, the basic packages for the analysis were loaded. These were:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Pandas: for data cleaning and manipulation&lt;/li&gt;
&lt;li&gt;Numpy: for data cleaning and manipulation&lt;/li&gt;
&lt;li&gt;Matplotlib: for visualisations&lt;/li&gt;
&lt;li&gt;Seaborn: for visualisations&lt;/li&gt;
&lt;li&gt;Re: for regular expressions&lt;/li&gt;
&lt;li&gt;Warnings: to deal with the warnings&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;Notes from Previewing the DataFrames&lt;/strong&gt;&lt;br&gt;
The individual datasets were then loaded as Pandas DataFrames. The first note was the differences in the number of columns in the datasets: 2018 (6), 2019 (9), 2020 (10), and 2021 (9). Other observations from looking at the individual datasets are as follows&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The 2018 DataFrame&lt;/strong&gt;&lt;br&gt;
    • The DataFrame has 526 rows and 6 columns.&lt;br&gt;
    • Dashes were used in the amounts column for deals whose values were not known.&lt;br&gt;
    • The amounts in the 2018 DataFrame are a mix of Indian Rupees (INR) and US Dollars (USD), meaning they have to be converted into the same currency.&lt;br&gt;
    • The industry and location columns have multiple information. A decision is to be made between selecting the first value before the separator(,) as the main value or representing that column with a word cloud.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;The 2019 DataFrame&lt;/strong&gt;&lt;br&gt;
    • The DataFrame has 89 rows and 9 columns.&lt;br&gt;
    • The data type of the “Founded” column is set to float64. It should be set to a string for uniformity.&lt;br&gt;
    • The headquarter column has multiple information. A decision is to be made between selecting the first value before the separator(,) as the main value or representing that column with a word cloud&lt;br&gt;
&lt;strong&gt;The 2020 DataFrame&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
• There is an extra column called “Unnamed:9”, giving it a total of 10 columns. It should be dropped to ensure complete alignment with the other DataFrames for ease of concatenation.&lt;br&gt;
&lt;strong&gt;The 2021 DataFrame&lt;/strong&gt;&lt;br&gt;
    • The data type of the “Founded” column is set to float64. It should be set to a string for uniformity.&lt;br&gt;
**    • General Notes** &lt;br&gt;
   • The columns in 2018 are different from those of 2019–2021, meaning they have to be renamed before concatenation.&lt;br&gt;
    • The currency signs and commas have to be removed from each amount column for each DataFrame.&lt;br&gt;
    • All the columns with amounts have to be set to float.&lt;br&gt;
    • All the years of funding and the years founded should be converted to strings.&lt;br&gt;
    • The respective years of funding have to be attached to each DataFrame before combining.&lt;br&gt;
&lt;strong&gt;Assumptions&lt;/strong&gt;&lt;br&gt;
    1. The average Indian Rupee (INR) to US Dollar (USD) rate for the relevant year will be used for currency conversions.&lt;br&gt;
    2. The first values of industry and location in the 2018 data are the primary sector and headquarters respectively.&lt;br&gt;
    3. Amounts without currency symbols in the 2018 dataset are in USD.&lt;br&gt;
    4. Imputations will not be made for undisclosed and/or unavailable (missing) amounts due to the uncertainties, risks of misstatements and possible misleading effects on the analyses.&lt;br&gt;
Data Cleaning&lt;br&gt;
In summary, the major activities performed on the DataFrames involved extensive data cleaning and preparation. String formatting was applied to all columns, excluding the amounts columns, which were converted to numeric format. The location and industry columns were separated using commas as delimiters, with the first value selected as the primary sector.&lt;br&gt;
For the 2018 Amount column, two new columns were created to aid in currency conversion, and after standardizing the amounts, the extra columns were dropped. Commas and currency signs were removed from the “Amounts” columns, and the “Undisclosed” text was replaced.&lt;br&gt;
To ensure data integrity, “nan” values in the “Founders” column were replaced with nulls, and any notable misplaced or erroneous values were rectified in the respective rows.&lt;br&gt;
Further refinements were made by dropping the extra unnamed column in the 2020 DataFrame. A new column indicating the year of funding was appended to each DataFrame.&lt;br&gt;
To unify the DataFrames, the columns in the 2018 DataFrame were renamed to match the others before concatenating them. Additional steps included reformatting amounts as numerics, replacing nulls with zeros, and formatting funding years and years founded as strings.&lt;br&gt;
To ensure data accuracy, all duplicates were removed, and the index was reset. Column-specific cleaning was also performed.&lt;br&gt;
For more detailed functions and processes, please refer to the attached notebook.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Exploratory Data Analysis&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--8dwnNN7D--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ob8zwigtin6vcvmb2j74.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--8dwnNN7D--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ob8zwigtin6vcvmb2j74.png" alt='A Dashbord Power bi showing 40% responded "Yes", 50% responded "No" and 10% responded "Not sure"' width="777" height="445"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;1  How the funding of the startups have changed over the period.&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--RgWXsTII--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yg1acuwrz0moby8mssg0.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--RgWXsTII--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yg1acuwrz0moby8mssg0.png" alt='A bar chart showing 40% responded "Yes", 50% responded "No" and 10% responded "Not sure"' width="780" height="483"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--bxkubcuJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3ohtpvmd33ly9ssda9gz.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--bxkubcuJ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/3ohtpvmd33ly9ssda9gz.png" alt='A linear chart showing 40% responded "Yes", 50% responded "No" and 10% responded "Not sure"' width="772" height="487"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Over the analyzed period, the funding to startups in the Indian ecosystem exhibited a consistent upward trajectory, despite a temporary dip in 2019. The number of deals surged from 525 in 2018 to 1,054 in 2020, reaching a peak of 1,190 in 2021.&lt;br&gt;
Correspondingly, the amounts involved in these deals followed a similar growth pattern. Funding escalated from USD 6.6 billion in 2018 to USD 90 billion in 2020, and remarkably, it soared to USD 179.6 billion in 2021.&lt;br&gt;
These compelling findings unequivocally demonstrate the thriving nature of the Indian startup landscape, as both the number of deals and funding received by startups experienced remarkable growth during the observed period.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;2 Wich Region received the most investment&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;In terms of total number of deals for startups headquartered in the various locations, Mumbai , Bangalore , Gurgaon , and New Delhi  made up the top 5. A visual representation can be seen below:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Qg_kSkDe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yxjl2xe8pq2nv0q2cw9t.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Qg_kSkDe--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/yxjl2xe8pq2nv0q2cw9t.png" alt='A linear chart showing 40% responded "Yes", 50% responded "No" and 10% responded "Not sure"' width="722" height="515"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The majority of funding in the Indian startup ecosystem is concentrated in two key locations — Mumbai (82.5%) and Bangalore (8.6%). Together, they accounted for about 91% of the total funding received by Indian startups during the analyzed period, indicating significant centralization of funding in these cities.&lt;/p&gt;

&lt;p&gt;** 3 Which Sectors are Favoured by Investors**&lt;/p&gt;

&lt;p&gt;We note that funding to the **Fintech **and **Retail **sectors made up about 80% of total funding to startups over the period, implying centralization of funding around these sectors as well. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--4W6_RqlF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fcai32fc1ga5dvzttkom.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--4W6_RqlF--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/fcai32fc1ga5dvzttkom.png" alt='A linear chart showing 40% responded "Yes", 50% responded "No" and 10% responded "Not sure"' width="618" height="390"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LZgDSeR4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2kh14c634w1r51txeerx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LZgDSeR4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/2kh14c634w1r51txeerx.png" alt='A pie chart showing 40% responded "Yes", 50% responded "No" and 10% responded "Not sure"' width="569" height="539"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The data analysis highlights a concentration of funding in specific sectors (Fintech and Retail) and locations (Mumbai and Bangalore) for startups in the Indian ecosystem. Startups positioned at the intersection of these sectors and locations received above-average funding in the deals they participated in. &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Conclusion and Recommendations&lt;/strong&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt; Top sectors in indian startup ecosystem are Fintech*&lt;em&gt;, **Retail&lt;/em&gt;&lt;em&gt;, **Edtech&lt;/em&gt;&lt;em&gt;, **Tech&lt;/em&gt;* and &lt;strong&gt;E-commerce&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Bangalore&lt;/strong&gt; has the most startups. It seems to be the emerging city with the top sectors being &lt;strong&gt;Innovation Management&lt;/strong&gt;, &lt;strong&gt;Food Delivery&lt;/strong&gt; and &lt;strong&gt;Mechanical &amp;amp; Industrial Engineering&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt; &lt;strong&gt;Mumbai&lt;/strong&gt; is the big city with the big money investments, with leading sectors being &lt;strong&gt;Fintech&lt;/strong&gt;, &lt;strong&gt;Retail&lt;/strong&gt; and &lt;strong&gt;Multinational conglomerates&lt;/strong&gt;
&lt;/li&gt;
&lt;li&gt; In different regions, different sectors are more heavily invested in. In this case, we reject our null hypothesis and accept that investment raised is spread widely across multiple sectors&lt;/li&gt;
&lt;li&gt; The team should start a business in &lt;strong&gt;Mumbai&lt;/strong&gt; in the &lt;strong&gt;Fintech&lt;/strong&gt; or &lt;strong&gt;Retail&lt;/strong&gt;. There seems to be high demand for finance solutions and shopping
experiences. Retail was popular during the pandemic as more people were probably shopping from home.&lt;/li&gt;
&lt;li&gt; Alternatively, the team could start a business in &lt;strong&gt;Bangalore&lt;/strong&gt;, since it seems the preferred region for startups. &lt;strong&gt;Innovation Management&lt;/strong&gt; or*&lt;em&gt;Food Delivery&lt;/em&gt;* is the preferred sector to go into.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;strong&gt;References&lt;/strong&gt;&lt;br&gt;
&lt;a href="https://www.educative.io/blog/python-pandas-tutorial"&gt;Data analysis made simple: Python Pandas tutorial&lt;/a&gt;&lt;br&gt;
&lt;a href="https://365datascience.com/tutorials/python-tutorials/data-analysis-python/"&gt;A Beginner’s Guide to Data Analysis in Python&lt;br&gt;
&lt;/a&gt;&lt;br&gt;
&lt;a href="https://towardsdatascience.com/a-beginners-guide-to-data-analysis-in-python-188706df5447"&gt;A Beginner’s Guide to Data Analysis in Python&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Appreciation&lt;/strong&gt;&lt;br&gt;
I highly recommend &lt;a href="https://www.azubiafrica.org/data-analytics"&gt;Azubi Africa &lt;/a&gt;for their comprehensive and effective programs. Read More articles about Azubi Africa here and take a few minutes to visit this link to learn more about &lt;a href="https://www.azubiafrica.org/data-analytics"&gt;Azubi Africa&lt;/a&gt; life-changing programs&lt;br&gt;
&lt;strong&gt;Tags&lt;/strong&gt;&lt;br&gt;
AzubiData Science&lt;/p&gt;

</description>
      <category>analytics</category>
      <category>analyst</category>
      <category>machinelearning</category>
      <category>datascience</category>
    </item>
  </channel>
</rss>
