<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Scribbling of Thoughts]]></title><description><![CDATA[A student lost in her own thoughts.........]]></description><link>https://poorva0704.hashnode.dev</link><generator>RSS for Node</generator><lastBuildDate>Sun, 30 Aug 2026 23:34:04 GMT</lastBuildDate><atom:link href="https://poorva0704.hashnode.dev/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[Cyber Crime - A Global Threat]]></title><description><![CDATA[Greetings!
I'm Poorva Adhikary, a Computer Science student on the exciting journey of my first blog. Nervous yet eager, I'm diving into the world of cybercrime, a potent threat in our century.
For my industrial training project in data analysis, my t...]]></description><link>https://poorva0704.hashnode.dev/cyber-crime-a-global-threat</link><guid isPermaLink="true">https://poorva0704.hashnode.dev/cyber-crime-a-global-threat</guid><category><![CDATA[Cybercrime]]></category><category><![CDATA[data analysis]]></category><category><![CDATA[Python 3]]></category><category><![CDATA[data visualization]]></category><dc:creator><![CDATA[Poorva Adhikary]]></dc:creator><pubDate>Sun, 28 Jan 2024 12:24:37 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1706352868449/255e5cbb-c298-46ec-901a-3bbe20194cca.jpeg" length="0" type="image/jpeg"/><content:encoded><![CDATA[<h2 id="heading-greetings">Greetings!</h2>
<p>I'm Poorva Adhikary, a Computer Science student on the exciting journey of my first blog. Nervous yet eager, I'm diving into the world of cybercrime, a potent threat in our century.</p>
<p>For my industrial training project in data analysis, my team, under my leadership, chose to analyze a cybercrime dataset. John E. Douglas once said, "If you want to understand the criminal mind, you must go directly to the source and learn to decipher what he tells you."</p>
<p><a target="_blank" href="https://colab.research.google.com/drive/1IjGBkLqCp4UWU9fuAwtQZyvqbja5eXX2?usp=sharing#scrollTo=iIxfwkmBQwc7">Tap over to see our project. ;)</a></p>
<p>Join me as we delve into the realm of crimes and decipher patterns in cyber threats....</p>
<h2 id="heading-step-1">Step 1</h2>
<h3 id="heading-importing-libraries">Importing Libraries :</h3>
<p>A brief description of NumPy, Pandas, Matplotlib, and Seaborn in points:</p>
<p><strong>NUMPY :</strong></p>
<ul>
<li><p>A powerful library for numerical computing in Python.</p>
</li>
<li><p>Provides support for large, multi-dimensional arrays and matrices, along with mathematical functions to operate on these arrays.</p>
</li>
</ul>
<p><strong>PANDAS :</strong></p>
<ul>
<li><p>A data manipulation and analysis library for Python.</p>
</li>
<li><p>Offers data structures like DataFrame for efficient data handling.</p>
</li>
<li><p>Enables operations such as merging, reshaping, and slicing datasets.</p>
</li>
</ul>
<p><strong>MATPLOTLIB :</strong></p>
<ul>
<li><p>A comprehensive 2D plotting library for creating static, interactive, and animated visualizations in Python.</p>
</li>
<li><p>Widely used for generating plots, charts, histograms, and other graphical representations of data.</p>
</li>
</ul>
<p><strong>SEABORN :</strong></p>
<ul>
<li><p>A statistical data visualization library based on Matplotlib.</p>
</li>
<li><p>Simplifies the creation of informative and attractive statistical graphics.</p>
</li>
<li><p>Provides high-level interfaces for drawing attractive and informative statistical graphics.</p>
</li>
</ul>
<p>We can import the above mentioned libraries by using "import" keyword.</p>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706355458022/970fee5a-c721-4cf6-86a4-fbdf7a51deed.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-2">Step 2</h2>
<h3 id="heading-loading-and-displaying-dataset">Loading and Displaying Dataset :</h3>
<p>Now we need to introduce to the dataset "cyber crime(2017-2020).csv". We need to implement Pandas to load and display the dataset.</p>
<pre><code class="lang-python">security=pd.read_csv(<span class="hljs-string">'cyber crime(2017-2020).csv'</span>)
security
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706356363965/ef15e786-7b0c-4d2f-b1f5-c58a0dcd084d.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-3">Step 3</h2>
<h3 id="heading-overview-of-various-pandas-functions">Overview of various Pandas functions :</h3>
<p>info(): It gives us a precise summary of our chosen dataset.</p>
<pre><code class="lang-python">security.info()
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706358812914/4ff36967-04a1-4d14-88a7-6e73e0ca7f75.png" alt class="image--center mx-auto" /></p>
<p>describe(): It provides a summary of descriptive statistics for a DataFrame.</p>
<pre><code class="lang-python">security.describe()
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706358949241/fc5ec26a-559a-43fb-be35-1a3914f834a5.png" alt class="image--center mx-auto" /></p>
<p>head(): It display the first few rows of the dataset. By default it displays first 5 rows.</p>
<pre><code class="lang-python">security.head()
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706359039466/817d039b-dded-489b-ad15-0bdc31821d68.png" alt class="image--center mx-auto" /></p>
<p>columns: It displays the number of columns in the dataset along with the column headings.</p>
<pre><code class="lang-python">security.columns
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706359396425/245fbc49-4360-4e07-9053-b25621b38f33.png" alt class="image--center mx-auto" /></p>
<p>Now, we are done with the basics. Let's analyze the crimes year wise. Here crimes in 2017 are showed. We can analyze the respective years with the same line of code just by changing the year.</p>
<pre><code class="lang-python">evergreen=security[security[<span class="hljs-string">'Year'</span>]==<span class="hljs-number">2017</span>]
evergreen
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706360160262/a46cd149-ecbd-4f6c-9ef6-14cd03757bf5.png" alt class="image--center mx-auto" /></p>
<p>Let's see when Prank goes wrong, and start our analysis picking each column, ("state/ut", "year", type of crimes).</p>
<pre><code class="lang-python">evergreen1=security[[<span class="hljs-string">'State/UT'</span>,<span class="hljs-string">'Year'</span>,<span class="hljs-string">'Prank '</span>]]
evergreen1
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706360559360/e33f0a72-95c1-4cca-84a7-27002094b42e.png" alt class="image--center mx-auto" /></p>
<p>Now we should analyze our data in a sorted order. So we can sort a specific column. Here we have sorted the column : 'Total'.</p>
<pre><code class="lang-python">evergreen=security.sort_values(<span class="hljs-string">'Total '</span>)
evergreen
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706360990426/0c10a120-63cb-4ad1-ad11-de95a6481159.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-4">Step 4</h2>
<h3 id="heading-overview-of-various-matplotlib-functions">Overview of various Matplotlib functions :</h3>
<p>In this colorful segment, we'll leverage the functionalities of Matplotlib to craft an array of visual representations. Brace yourselves for the enchanting world of bar charts, pie charts, histograms, line charts, and scatter plots. Through these dynamic and animated depictions, we aim to unravel the intricacies of our data in a comprehensive and visually engaging manner. Let the exploration begin!</p>
<p>We begin with the bar chart, plotting Prank Vs Anger rate of crimes.</p>
<pre><code class="lang-python"><span class="hljs-comment"># Create graphs</span>

<span class="hljs-comment"># create a bar chart of the number of cyber crimes per state</span>

plt.bar(security[<span class="hljs-string">'Prank '</span>], security[<span class="hljs-string">'Anger '</span>])
plt.xlabel(<span class="hljs-string">'Prank'</span>) 
plt.ylabel(<span class="hljs-string">'Anger'</span>)
plt.title(<span class="hljs-string">'Prank Vs Anger'</span>)
plt.show() <span class="hljs-comment">#to display the graph</span>
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706362709945/c11c944f-a48e-4f76-b2f2-8b4ea9b21e33.png" alt class="image--center mx-auto" /></p>
<p>Here also we are plotting against Year vs Total, displaying the grids. In the below code one can find certain new attributes like:</p>
<ul>
<li><p>lw=line width</p>
</li>
<li><p>ls= line style which is mentioned as dotted</p>
</li>
<li><p>c= color of the line (g=green &amp; r= red)</p>
</li>
</ul>
<pre><code class="lang-python"><span class="hljs-comment"># create a line chart of the number of cyber crimes over time</span>

plt.plot(security[<span class="hljs-string">'Year'</span>], security[<span class="hljs-string">'Total '</span>],lw=<span class="hljs-number">5</span>,c=<span class="hljs-string">'g'</span>)
plt.grid(c=<span class="hljs-string">'r'</span>,lw=<span class="hljs-number">0.5</span>,ls=<span class="hljs-string">'dotted'</span>)
plt.xlabel(<span class="hljs-string">'Year'</span>)
plt.ylabel(<span class="hljs-string">'Number of Cyber Crimes'</span>)
plt.title(<span class="hljs-string">'Number of Cyber Crimes Over Time'</span>)
plt.show()
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706362790003/2bcfcef1-c06c-4b1f-a7cf-fdb7d123bbb6.png" alt class="image--center mx-auto" /></p>
<p>Getting a histograms, on the column "Others". The x-axis represent year and the y-axis represent number of crimes.</p>
<pre><code class="lang-python">plt.hist(security[<span class="hljs-string">'Others '</span>])
plt.xticks([<span class="hljs-number">1000</span>,<span class="hljs-number">2000</span>,<span class="hljs-number">3000</span>,<span class="hljs-number">4000</span>,<span class="hljs-number">5000</span>,<span class="hljs-number">6000</span>,<span class="hljs-number">7000</span>,<span class="hljs-number">8000</span>])
plt.xlabel(<span class="hljs-string">'Year'</span>)
plt.title(<span class="hljs-string">'Others'</span>)
plt.show()
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706364430535/106eab99-cc04-4596-a328-4e04521ae824.png" alt class="image--center mx-auto" /></p>
<p>Time for a scatter plot.</p>
<ul>
<li><p>figsize() : states the size of the graph</p>
</li>
<li><p>marker : the symbol with which the graph will be plotted</p>
</li>
</ul>
<pre><code class="lang-python">fig = plt.figure(figsize=(<span class="hljs-number">12</span>, <span class="hljs-number">8</span>))
plt.scatter(security[<span class="hljs-string">"Total "</span>], security[<span class="hljs-string">"Year"</span>], marker=<span class="hljs-string">"*"</span>,color=<span class="hljs-string">"red"</span>)
plt.yticks([<span class="hljs-number">2017</span>,<span class="hljs-number">2018</span>,<span class="hljs-number">2019</span>,<span class="hljs-number">2020</span>])
plt.title(<span class="hljs-string">" Year by Crime"</span>)
plt.xlabel(<span class="hljs-string">"Crime"</span>)
plt.ylabel(<span class="hljs-string">"Year"</span>)
plt.show()
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706364705397/23bc0871-d4ce-4aa8-a91c-77e6e492978d.png" alt class="image--center mx-auto" /></p>
<p>Exploring plot.pie() function to generate a pie chart, but with two attributes, explode</p>
<ul>
<li><p>shadow: gives a shadow to our pie chart giving a 3D view.</p>
</li>
<li><p>explode: separates the respective portion of our generated pie chart.</p>
</li>
</ul>
<pre><code class="lang-python"><span class="hljs-comment"># pie chart</span>
security[<span class="hljs-string">'Total '</span>].value_counts().tail(<span class="hljs-number">10</span>).plot.pie(shadow=<span class="hljs-literal">True</span>,explode=[<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>,<span class="hljs-number">0.1</span>])
plt.show()
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706365151927/94d1d267-39ec-4585-8eee-559766a4f290.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-5">Step 5</h2>
<h3 id="heading-overview-of-various-seaborn-functions">Overview of various Seaborn functions :</h3>
<p>As mentioned earlier Seaborn is a data visualization library based on Matplotlib, it helps in generating high level statistical graphics. Let's start with, PairGrid()...</p>
<p>The <mark>PairGrid()</mark> function in Seaborn is a powerful tool for creating a grid of subplots based on pairwise relationships in a dataset.</p>
<pre><code class="lang-python"><span class="hljs-comment">#Implementing PairGrd() on Prank and Sexual Exploitation in Xaxis</span>
g=sns.PairGrid(security, y_vars=[<span class="hljs-string">"Year"</span>],x_vars=[<span class="hljs-string">"Sexual Exploitation"</span>, <span class="hljs-string">"Prank "</span>],height=<span class="hljs-number">5.5</span>,hue=<span class="hljs-string">"Year"</span>,aspect=<span class="hljs-number">2</span>)
ax=g.map(plt.scatter,alpha=<span class="hljs-number">1</span>)
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706409918944/e56241dc-2271-4a80-bf96-cf0c9ef372cd.png" alt class="image--center mx-auto" /></p>
<p>The <mark>kdeplot</mark> (Kernel Density Estimate plot) in Seaborn is a function used to visualize the distribution of univariate data. It provides a smoothed representation of the data's underlying probability density function.</p>
<pre><code class="lang-python"><span class="hljs-comment">#Implementing Ratio of total and prank</span>
security[<span class="hljs-string">'total_crimes_to_prank'</span>]=security[<span class="hljs-string">'Total '</span>]/security[<span class="hljs-string">'Prank '</span>]
kdeplot(<span class="hljs-string">'total_crimes_to_prank'</span>)
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706410053711/25bcaf0c-2268-436a-9bca-cbc031056591.png" alt class="image--center mx-auto" /></p>
<p>The <mark>FacetGrid</mark> in Seaborn is a versatile class for creating small multiples of plots based on the values of one or more variables. It allows you to visualize relationships across multiple levels of categorical variables in your dataset.</p>
<pre><code class="lang-python"><span class="hljs-comment">#Implementing FacetGrid() and map() function</span>
g=sns.FacetGrid(security,col=<span class="hljs-string">"Category"</span>,height=<span class="hljs-number">4</span>,aspect=<span class="hljs-number">.5</span>)
ax=g.map(sns.barplot,<span class="hljs-string">"Year"</span>,<span class="hljs-string">"Anger "</span>,palette=<span class="hljs-string">"Blues_d"</span>)
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706410168157/852a6109-962f-4cdd-8847-6a64b265ab21.png" alt class="image--center mx-auto" /></p>
<p>A <mark>box plot</mark> (or box-and-whisker plot) in Seaborn is a useful visualization for summarizing the distribution of a continuous variable. It provides a visual representation of key statistical measures such as the median, quartiles, and potential outliers.</p>
<pre><code class="lang-python"><span class="hljs-comment">#Implementing Box kind or box function</span>
ax = sns.catplot(y=<span class="hljs-string">"Total "</span>, x=<span class="hljs-string">"Year"</span>, hue=<span class="hljs-string">"Category"</span>, kind=<span class="hljs-string">"box"</span>, data=security, height=<span class="hljs-number">5</span>, aspect=<span class="hljs-number">1.8</span>)
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706410279286/74ede544-4437-47d8-8ea6-73895c999fa8.png" alt class="image--center mx-auto" /></p>
<p>A <mark>violin plot</mark> in Seaborn is a data visualization that combines aspects of a box plot and a kernel density plot. It is used to visualize the distribution of a continuous variable within different categories or groups.</p>
<pre><code class="lang-python"><span class="hljs-comment">#Implementing Violin plot</span>
ax=sns.catplot(x=<span class="hljs-string">"Category"</span>,y=<span class="hljs-string">"Total "</span>,hue=<span class="hljs-string">"Year"</span>,kind=<span class="hljs-string">"violin"</span>,
               palette=<span class="hljs-string">"pastel"</span>,data=security,height=<span class="hljs-number">4.2</span>,aspect=<span class="hljs-number">2.4</span>)
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706410350158/6acc96c2-9ef4-4695-8552-4ddf2f308b72.png" alt class="image--center mx-auto" /></p>
<p>A <mark>heatmap</mark> in Seaborn is a graphical representation of a matrix where individual values are represented as colors. It is particularly useful for visualizing the relationships between two categorical variables or displaying the correlation matrix of a dataset.</p>
<pre><code class="lang-python"><span class="hljs-comment">#Implementing heatmap()</span>
plt.figure(figsize=(<span class="hljs-number">12</span>, <span class="hljs-number">6</span>))
security.drop([<span class="hljs-string">'Personal Revenge'</span>, <span class="hljs-string">'Anger '</span>, <span class="hljs-string">'Fraud '</span>, <span class="hljs-string">'Others '</span>],
        axis=<span class="hljs-number">1</span>, inplace=<span class="hljs-literal">True</span>)
corr = security.apply(<span class="hljs-keyword">lambda</span> x: pd.factorize(x)[<span class="hljs-number">0</span>]).corr()
ax = sns.heatmap(corr, xticklabels=corr.columns, yticklabels=corr.columns,
                 linewidths=<span class="hljs-number">.2</span>, cmap=<span class="hljs-string">"YlGnBu"</span>)
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706410432166/81fdd22f-359b-4c59-9821-0d523a52a87f.png" alt class="image--center mx-auto" /></p>
<p>A <mark>joint plot</mark> in Seaborn is a combination of multiple plots to represent the relationship between two numerical variables, as well as the univariate distributions of each variable. It can include scatter plots, histograms, kernel density estimates, and regression fits.</p>
<pre><code class="lang-python"><span class="hljs-comment">#Implementing jointplot()</span>
sns.jointplot(data=security, x=<span class="hljs-string">"Total "</span>, y=<span class="hljs-string">"Year"</span>, hue=<span class="hljs-string">"Category"</span>)
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706410509402/b6fc2ed1-d0ad-4da6-8243-10fcdf37590d.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-step-6">Step 6</h2>
<h3 id="heading-overview-of-various-numpy-functions">Overview of various Numpy functions :</h3>
<p>Finally we have arrived in our last section of our blog :) . Now let's do a quick overview of the functions of Numpy libraries.</p>
<p>.array() : It converts a set of data into array format.</p>
<pre><code class="lang-python"><span class="hljs-comment">#converting the dataset into an array</span>
data_array=np.array(security)
data_array
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706410997285/3108b054-93df-42b0-87b5-e0e31b325b8e.png" alt class="image--center mx-auto" /></p>
<p>.max() : To display the maximum number from the mentioned group.</p>
<pre><code class="lang-python"><span class="hljs-comment">#finding the maximum value in a column</span>
col_array=np.array(security[<span class="hljs-string">'Total '</span>] , dtype=int)
max_value=np.max(col_array)
max_value
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706411157037/da78d728-a308-47ec-a192-78d2cde74aac.png" alt class="image--center mx-auto" /></p>
<p>.sort() : It helps to sort the data items in ascending order.</p>
<pre><code class="lang-python"><span class="hljs-comment">#sorting a column</span>
col_array=np.array(security[<span class="hljs-string">'Extortion '</span>] )
sorted_array=np.sort(col_array)
sorted_array
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706411231967/11d0b09b-46c5-4f3b-bdb9-c241bb5add75.png" alt class="image--center mx-auto" /></p>
<p>.mean() : Calculates the mean value of the mentioned data items.</p>
<pre><code class="lang-python"><span class="hljs-comment">#calculating the mean of a column</span>
col_array=np.array(security[<span class="hljs-string">'Total '</span>] , dtype=int)
mean_value=np.mean(col_array , dtype=int)
mean_value
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706411306069/2df99289-a862-4201-972a-2b6bd123f8e4.png" alt class="image--center mx-auto" /></p>
<p>.median() : Calculates the median value of the mentioned data items.</p>
<pre><code class="lang-python"><span class="hljs-comment">#finding the median of a particular column</span>
col_array=np.array(security[<span class="hljs-string">'Abetment to Suicide'</span>] , dtype=int)
median_value=np.median(col_array)
median_value
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706411391777/5d78807a-d053-4b53-88d4-975d04a24c10.png" alt class="image--center mx-auto" /></p>
<p>Calculating the which year had the maximum number of fraud cases and what was the highest number.</p>
<pre><code class="lang-python"><span class="hljs-comment">#finding which year had the maximum number of fraud cases</span>
col_array=np.array(security[<span class="hljs-string">'Prank '</span>] , dtype=int)
max_index=np.argmax(security[<span class="hljs-string">'Prank '</span>])
max_value=np.max(col_array)
print(<span class="hljs-string">f"The maximum value of fraud cases:<span class="hljs-subst">{max_value}</span>"</span>)
col_array1=np.array(security[<span class="hljs-string">'Year'</span>] , dtype=int)
col_array1[max_index]
</code></pre>
<p><img src="https://cdn.hashnode.com/res/hashnode/image/upload/v1706411498659/2dfb53b9-9ea1-45d9-ac19-c43ce482f445.png" alt class="image--center mx-auto" /></p>
<h2 id="heading-final-step">Final Step</h2>
<p>We've reached the conclusion of the blog, and I want to express my sincere gratitude for your dedicated readership.</p>
<p>"The Matrix is telling me that I define my own purpose." - Morpheus, The Matrix</p>
<p>This project wasn't just about technical learning; it ignited a spark within me, awakening a deep fascination with the world of machine learning. Driven by this newfound passion, I'm determined to delve deeper, to dissect and analyze diverse datasets, pushing the boundaries of what's possible.</p>
<p>My recent acceptance into the prestigious Microsoft LSA program further fuels my ambition, which will also give me a chance to prove my leadership skills.</p>
<p>In essence, this project wasn't just a stepping stone; it was a launchpad. It propelled me into a universe of endless possibilities, leaving me with an indelible mark – the exhilarating thrill of discovery, the unwavering thirst for knowledge, and the unshakeable belief that I, like Morpheus or Neo, can define my own purpose in this ever-evolving digital landscape.</p>
<p>Embarking on a project in Python was initially a daunting prospect for me as a newcomer. However, this journey not only familiarized me with the fundamentals but also provided hands-on experience in data visualization. I must acknowledge the collaborative spirit of my team members-Rohan Ghosh, Pushkar Pan, Anushri Roy and Shruti Paral. Their invaluable contributions played a pivotal role in the success of this project. Thank You all for being part of this enriching experience.</p>
<p>For any queries or any collaboration work, feel free to contact me on : <strong><em>adhikarypoorvaraja@gmail.com</em></strong></p>
]]></content:encoded></item></channel></rss>