<?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: Rounak Prasad</title>
    <description>The latest articles on Forem by Rounak Prasad (@rounak161106).</description>
    <link>https://forem.com/rounak161106</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%2F3736513%2Fd82aadf0-7031-4766-bc1d-bfd6c578aeac.webp</url>
      <title>Forem: Rounak Prasad</title>
      <link>https://forem.com/rounak161106</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/rounak161106"/>
    <language>en</language>
    <item>
      <title>Understanding Pandas DataFrames (Beginner-Friendly)</title>
      <dc:creator>Rounak Prasad</dc:creator>
      <pubDate>Fri, 10 Apr 2026 17:58:29 +0000</pubDate>
      <link>https://forem.com/rounak161106/understanding-pandas-dataframes-beginner-friendly-4b2l</link>
      <guid>https://forem.com/rounak161106/understanding-pandas-dataframes-beginner-friendly-4b2l</guid>
      <description>&lt;p&gt;When I started learning data science, one of the first tools I came across was Pandas. At first, it felt confusing. But once I understood the basics, it became one of the most powerful tools in Python.&lt;/p&gt;

&lt;p&gt;Here’s a simple breakdown of what a Pandas DataFrame actually is and why it matters.&lt;/p&gt;

&lt;h2&gt;
  
  
  What is a DataFrame?
&lt;/h2&gt;

&lt;p&gt;A DataFrame is a 2-dimensional table, similar to an Excel sheet or a SQL table.&lt;/p&gt;

&lt;p&gt;It has:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Rows (records)&lt;/li&gt;
&lt;li&gt;Columns (features)&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Each column can store different types of data like numbers, strings, or dates.&lt;/p&gt;

&lt;h2&gt;
  
  
  Creating a Simple DataFrame
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="kn"&gt;import&lt;/span&gt; &lt;span class="n"&gt;pandas&lt;/span&gt; &lt;span class="k"&gt;as&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;

&lt;span class="n"&gt;data&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="p"&gt;{&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Name&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Rounak&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Aman&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Priya&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Age&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;19&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;20&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;18&lt;/span&gt;&lt;span class="p"&gt;],&lt;/span&gt;
    &lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Marks&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt; &lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="mi"&gt;85&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;90&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt; &lt;span class="mi"&gt;88&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;span class="p"&gt;}&lt;/span&gt;

&lt;span class="n"&gt;df&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;pd&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nc"&gt;DataFrame&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;data&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;span class="nf"&gt;print&lt;/span&gt;&lt;span class="p"&gt;(&lt;/span&gt;&lt;span class="n"&gt;df&lt;/span&gt;&lt;span class="p"&gt;)&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Basic Operations
&lt;/h2&gt;

&lt;h3&gt;
  
  
  1. Viewing Data
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;df&lt;/span&gt;&lt;span class="p"&gt;.&lt;/span&gt;&lt;span class="nf"&gt;head&lt;/span&gt;&lt;span class="p"&gt;()&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  2. Selecting a Column
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;df&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Name&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  3. Filtering Data
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;df&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="n"&gt;df&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Marks&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;85&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h3&gt;
  
  
  4. Adding a New Column
&lt;/h3&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight python"&gt;&lt;code&gt;&lt;span class="n"&gt;df&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Passed&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;=&lt;/span&gt; &lt;span class="n"&gt;df&lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="s"&gt;Marks&lt;/span&gt;&lt;span class="sh"&gt;"&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt; &lt;span class="o"&gt;&amp;gt;&lt;/span&gt; &lt;span class="mi"&gt;40&lt;/span&gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  Why DataFrames are Important
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Easy to clean and preprocess data&lt;/li&gt;
&lt;li&gt;Works well with large datasets&lt;/li&gt;
&lt;li&gt;Integrates with libraries like NumPy and Matplotlib&lt;/li&gt;
&lt;li&gt;Widely used in real-world data science workflows&lt;/li&gt;
&lt;/ul&gt;

&lt;h2&gt;
  
  
  Final Thought
&lt;/h2&gt;

&lt;p&gt;Instead of trying to memorize everything, I found it more useful to practice small operations daily. The more I used DataFrames, the more intuitive they became.&lt;/p&gt;

&lt;p&gt;If you're just starting out, focus on building small examples like this and gradually increase complexity.&lt;/p&gt;

&lt;p&gt;That’s how I’m approaching it.&lt;/p&gt;

</description>
      <category>datascience</category>
      <category>pandas</category>
      <category>machinelearning</category>
      <category>python</category>
    </item>
    <item>
      <title>My Journey Into Data Science and Machine Learning</title>
      <dc:creator>Rounak Prasad</dc:creator>
      <pubDate>Wed, 28 Jan 2026 05:11:30 +0000</pubDate>
      <link>https://forem.com/rounak161106/my-journey-into-data-science-and-machine-learning-5d9b</link>
      <guid>https://forem.com/rounak161106/my-journey-into-data-science-and-machine-learning-5d9b</guid>
      <description>&lt;p&gt;Hi everyone 👋&lt;br&gt;&lt;br&gt;
I’m &lt;strong&gt;Rounak Prasad&lt;/strong&gt;, an aspiring data scientist, and I wanted to share a bit about my learning journey so far and what I’m currently focusing on.&lt;/p&gt;




&lt;h2&gt;
  
  
  Why Data Science?
&lt;/h2&gt;

&lt;p&gt;I’ve always been curious about how data can be used to understand patterns, make predictions, and solve real-world problems. That curiosity gradually led me into &lt;strong&gt;Data Science and Machine Learning&lt;/strong&gt;, where logic, math, and programming come together in a very practical way.&lt;/p&gt;




&lt;h2&gt;
  
  
  What I’m Currently Learning
&lt;/h2&gt;

&lt;p&gt;Right now, I’m focused on building &lt;strong&gt;strong fundamentals&lt;/strong&gt;, rather than rushing into advanced topics.&lt;/p&gt;

&lt;h3&gt;
  
  
  🔹 Core Areas
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;Python for data analysis&lt;/li&gt;
&lt;li&gt;NumPy and Pandas for data manipulation&lt;/li&gt;
&lt;li&gt;Matplotlib for data visualization&lt;/li&gt;
&lt;li&gt;Scikit-learn for basic machine learning models&lt;/li&gt;
&lt;/ul&gt;

&lt;h3&gt;
  
  
  🔹 Supporting Skills
&lt;/h3&gt;

&lt;ul&gt;
&lt;li&gt;HTML, CSS, and JavaScript&lt;/li&gt;
&lt;li&gt;Version control with Git &amp;amp; GitHub&lt;/li&gt;
&lt;li&gt;Writing clean, structured code&lt;/li&gt;
&lt;/ul&gt;




&lt;h2&gt;
  
  
  Projects &amp;amp; Practice
&lt;/h2&gt;

&lt;p&gt;I’m actively working on small projects to apply what I learn, including:&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;Data analysis exercises&lt;/li&gt;
&lt;li&gt;Beginner machine learning models&lt;/li&gt;
&lt;li&gt;Personal portfolio development&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;I believe consistent practice and gradual improvement matter more than rushing through topics.&lt;/p&gt;




&lt;h2&gt;
  
  
  My Portfolio
&lt;/h2&gt;

&lt;p&gt;I recently built my personal portfolio website to document my journey, projects, and certifications:&lt;/p&gt;

&lt;p&gt;🌐 &lt;strong&gt;Portfolio:&lt;/strong&gt;&lt;br&gt;&lt;br&gt;
&lt;a href="https://rounak161106.github.io/" rel="noopener noreferrer"&gt;https://rounak161106.github.io/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I’ll keep updating it as I grow and build more meaningful projects.&lt;/p&gt;




&lt;h2&gt;
  
  
  What’s Next?
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;Deeper understanding of machine learning algorithms&lt;/li&gt;
&lt;li&gt;Working with real-world datasets&lt;/li&gt;
&lt;li&gt;Improving problem-solving and analytical thinking&lt;/li&gt;
&lt;li&gt;Sharing learnings openly through posts like this&lt;/li&gt;
&lt;/ul&gt;




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

&lt;p&gt;I’m still early in my journey, but I believe in learning publicly and improving step by step.&lt;br&gt;&lt;br&gt;
If you’re also learning data science or machine learning, feel free to connect or share your experience.&lt;/p&gt;

&lt;p&gt;Thanks for reading! 🙌&lt;/p&gt;

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