<?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: Nelly Nyadzua</title>
    <description>The latest articles on DEV Community by Nelly Nyadzua (@nushynells).</description>
    <link>https://dev.to/nushynells</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%2F840563%2Fe8db0d6f-81b0-4622-a016-cce1210d63c5.jpg</url>
      <title>DEV Community: Nelly Nyadzua</title>
      <link>https://dev.to/nushynells</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/nushynells"/>
    <language>en</language>
    <item>
      <title>The Ultimate Guide to Getting Started in Data Science</title>
      <dc:creator>Nelly Nyadzua</dc:creator>
      <pubDate>Fri, 01 Apr 2022 15:12:14 +0000</pubDate>
      <link>https://dev.to/nushynells/the-ultimate-guide-to-getting-started-in-data-science-21jb</link>
      <guid>https://dev.to/nushynells/the-ultimate-guide-to-getting-started-in-data-science-21jb</guid>
      <description>&lt;p&gt;Interested in learning Data Science, welcome. In my simple version Data science is collecting, cleaning and analyzing data to get meaningful information that helps in providing insights. &lt;/p&gt;

&lt;p&gt;To succeed in Data Science path you will need:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Passion for analysis&lt;/li&gt;
&lt;li&gt;Consistency and Integrity in research&lt;/li&gt;
&lt;li&gt;Willingness to constantly learn 
Easy Peasy!&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--LC0NfrGE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/58ok0q4175my997y7mmp.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--LC0NfrGE--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/58ok0q4175my997y7mmp.jpg" alt="Image description" width="800" height="533"&gt;&lt;/a&gt; Photo by Pixabay from Pexels&lt;br&gt;
&lt;strong&gt;The Sprint&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;The current skills/ knowledge required to start are:&lt;/p&gt;

&lt;p&gt;Git - this is a version control platform that enables collaboration with your team mates.&lt;br&gt;
&lt;a href="https://youtu.be/SWYqp7iY_Tc"&gt;Check here&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Python - Language that is commonly used in data science and machine learning. &lt;br&gt;
&lt;a href="https://www.w3schools.com/python/python_getstarted.asp"&gt;Install python &lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.pythontutorial.net/"&gt;Learn Python&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Anaconda - A platform that you use for python/ R data science and machine learning projects and you work on Jupyter notebooks. &lt;br&gt;
&lt;a href="https://www.anaconda.com/"&gt;Anaconda install&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;You will get to work various types of data, the common are structured and Unstructured data. These types of data are stored in databases. &lt;/p&gt;

&lt;p&gt;Databases - Where data is stored. There are relational and non-relational databases.&lt;br&gt;
&lt;a href="https://youtu.be/qkod5bY10lU"&gt;Learn databases&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Some databases that are worth understanding from the word go:&lt;br&gt;
&lt;a href="https://www.sqltutorial.org/"&gt;SQL&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.postgresqltutorial.com/"&gt;Postgres&lt;/a&gt;&lt;br&gt;
&lt;a href="https://www.mongodb.com/docs/manual/tutorial/getting-started/"&gt;MongoDB&lt;/a&gt;&lt;br&gt;
&lt;a href="https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/Introduction.html"&gt;DynamoDB&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Python Libraries&lt;/strong&gt;&lt;br&gt;
Pandas - a python library for Data analysis and manipulation.&lt;br&gt;
&lt;a href="https://medium.com/bhavaniravi/python-pandas-tutorial-92018da85a33"&gt;pandas tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Numpy - a python library that works with mathematical functions.&lt;br&gt;
&lt;a href="https://medium.com/nerd-for-tech/a-complete-guide-on-numpy-for-data-science-c54f47dfef8d"&gt;Numpy tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Matplotlib - a python library used for visualizations.&lt;br&gt;
&lt;a href="https://medium.com/analytics-vidhya/a-beginners-guide-to-matplotlib-for-data-visualization-and-exploration-in-python-3fb32d03c3cd"&gt;Matplotlib tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Seaborn - a python library that deals with statistical operations. &lt;br&gt;
&lt;a href="https://python.plainenglish.io/seaborn-a-step-by-step-guide-to-catch-your-audience-part-1-42d9e6e30bea"&gt;Seaborn tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Pyforest - a handy python library that when installed it loads several other python libraries.&lt;br&gt;
&lt;a href="https://towardsdatascience.com/auto-import-python-libraries-d095a11b4cca"&gt;Pyforest tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Databases to python&lt;br&gt;
&lt;a href="https://medium.com/analytics-vidhya/how-to-setup-a-python-application-with-a-postgres-database-f965e7c1581e"&gt;Postgres to python tutorial&lt;/a&gt;&lt;br&gt;
&lt;a href="https://medium.com/codex/connect-to-an-mysql-database-via-python-9c88ceac999a"&gt;SQL to python tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Boto3 - An Amazon Web Services (AWS) SDK that creates, configures and manages AWS services.&lt;br&gt;
&lt;a href="https://medium.com/swlh/a-basic-introduction-to-boto3-a66df5548475"&gt;Boto3 tutorial&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Go through the tutorials, try to practice the examples given in the tutorials. By the end you'll have a pretty good skillset up your sleeve on how to start and perform a few basic data science projects.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dN4JvMHQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iyp9c7b70qlb1177gu5f.jpg" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dN4JvMHQ--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/iyp9c7b70qlb1177gu5f.jpg" alt="Image description" width="800" height="534"&gt;&lt;/a&gt; Photo by Tirachard Kumtanom from Pexels&lt;/p&gt;

&lt;p&gt;Let me know of other tutorials you think I should add to the list that will help beginner journey in the comments below.&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>machinelearning</category>
      <category>python</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
