<?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: Mudita Sharma</title>
    <description>The latest articles on DEV Community by Mudita Sharma (@mudita).</description>
    <link>https://dev.to/mudita</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%2F859412%2F9e988a14-637d-4a1f-97c4-397477c84fa4.jpeg</url>
      <title>DEV Community: Mudita Sharma</title>
      <link>https://dev.to/mudita</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/mudita"/>
    <language>en</language>
    <item>
      <title>Jupyter Notebook Shortcuts that you must know!</title>
      <dc:creator>Mudita Sharma</dc:creator>
      <pubDate>Mon, 09 May 2022 18:19:15 +0000</pubDate>
      <link>https://dev.to/mudita/jupyter-notebook-shortcuts-that-you-must-know-22k6</link>
      <guid>https://dev.to/mudita/jupyter-notebook-shortcuts-that-you-must-know-22k6</guid>
      <description>&lt;p&gt;Hey guys! Hope you're doing well.&lt;/p&gt;

&lt;p&gt;From today we'll be embarking on this journey of data analytics. We'll begin with Data Analysis using Python.&lt;/p&gt;

&lt;p&gt;There are many tools available that we can use for coding Python but the most easy to understand and beginner friendly tool is &lt;strong&gt;Jupyter Notebook&lt;/strong&gt;.&lt;/p&gt;

&lt;p&gt;Let's discuss some shortcuts of Jupyter Notebook that helps you become more productive.&lt;/p&gt;

&lt;p&gt;In Jupyter Notebook, we broadly have two types of cells as shown below:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--k8rG9pMm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/odzznkittr07oljzm9cr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--k8rG9pMm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/odzznkittr07oljzm9cr.png" alt="Image description" width="880" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the code cell we write the code, execute it and get some output like this&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--4e6w5htg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a2ek9gs7uyptmmk0mc8x.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--4e6w5htg--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/a2ek9gs7uyptmmk0mc8x.png" alt="Image description" width="880" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;In the markdown cell, we can add description about the code. Adding description always helps a third person to understand our code. This is how a markdown cell looks like.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--uKq8cRt6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x7y0btkrqguke2d75pfr.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--uKq8cRt6--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/x7y0btkrqguke2d75pfr.png" alt="Image description" width="880" height="375"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Here we have some tricks to play with these markdown cells.&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;If you want to convert a code cell to a markdown cell.&lt;br&gt;
&lt;em&gt;Esc+M&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If we want to convert any cell to code cell.&lt;br&gt;
&lt;em&gt;Esc+Y&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If we want to delete a cell.&lt;br&gt;
&lt;em&gt;Esc+D+D&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If we want to insert a new cell above a given cell.&lt;br&gt;
&lt;em&gt;Esc+A&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If we want to insert a new cell below a given cell.&lt;br&gt;
&lt;em&gt;Esc+B&lt;/em&gt;&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If we want to give headings then we use #&lt;br&gt;
&lt;em&gt;# for the largest heading&lt;/em&gt;&lt;br&gt;
&lt;em&gt;## for less larger heading&lt;/em&gt;&lt;br&gt;
and so on.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;These were the shortcuts that can save you some time and make you feel more professional. &lt;/p&gt;

&lt;p&gt;Stay Tuned for more such content and make sure that you follow us and don't miss out on the Data Analytics series.&lt;/p&gt;

</description>
      <category>python</category>
      <category>programming</category>
      <category>productivity</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Getting started with Data Analysis</title>
      <dc:creator>Mudita Sharma</dc:creator>
      <pubDate>Mon, 09 May 2022 11:19:57 +0000</pubDate>
      <link>https://dev.to/mudita/getting-started-with-data-analysis-5396</link>
      <guid>https://dev.to/mudita/getting-started-with-data-analysis-5396</guid>
      <description>&lt;p&gt;Hello People, this is my first post. I'm going to start a Data/Business Analytics series where I'll be sharing with you all my learnings in a well organized and sequential format. Hope you like my content and it helps you grow in your career and helps me learn from you as well (I'm sure you're going to give feedback!)&lt;/p&gt;

&lt;p&gt;I'd like to give you a roadmap that you can ponder upon.&lt;/p&gt;

&lt;p&gt;We'll be covering the following topics in the same order as shown below:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Python for Data Analysis&lt;/li&gt;
&lt;li&gt;SQL&lt;/li&gt;
&lt;li&gt;Tableau&lt;/li&gt;
&lt;li&gt;Power BI&lt;/li&gt;
&lt;li&gt;Preparation Tips for Microsoft Exams:&lt;/li&gt;
&lt;/ol&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;DP-900 (Azure Data Fundamentals)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;DP-203 (Azure Data Engineer)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;PL-300 (Power BI Data Analyst)&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Looking forward to a great learning experience and I hope you look forward to the same. Stay tuned till then! &lt;/p&gt;

&lt;p&gt;Happy Learning :)&lt;/p&gt;

</description>
      <category>python</category>
      <category>productivity</category>
      <category>beginners</category>
      <category>programming</category>
    </item>
  </channel>
</rss>
