Skip to main content

About Me



Hello 👋, I am Abhishek. Welcome to my world! One thing about me is that I don't shy away from exploring. I love to explore, be it new lands, new people, interests, passion, profession, technology, etc. I believe that it is better to explore and fail than to never try and regret. Professionally, I am a Computer Science engineer with 1.5+ years of experience in backend development. Currently, I am exploring my long-lost love, the field of Data Science. I have my interests in many other fields along with technology because why not?? I love sports, vlogging, travelling, etc. I would like to keep this profile data science related, but do excuse me if there is a blog or two related to my other interests 😋.


. _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ . _ .

Find me at - 

Gmail                  LinkedIn                 Tableau           GitHub                     Youtube





 


Comments

Popular posts from this blog

Git Basics and Local Usage

This blog is going to be on Git and a couple of very basic commands to run Git locally in our system. But before that, it is better to bust the myth, that “Git and GitHub are the same things”. This is a very beginner-level misconception to assume Git and GitHub to be the same thing. Though they are related to each other, both of them serve different purposes. According to Wikipedia, Git is software for tracking changes in any set of files, usually used for coordinating work among programmers collaboratively developing source code during software development. In simple terms, Git is a version control system. While on the other hand, GitHub is a hosting platform where you can host your git repositories and share them with others. I guess the basic definition is clear, now we can take it to the next step.  Downloading Git in your local system is very easy. You may follow any of the tutorials present on the Internet to install Git or maybe you can simply start installing on your ow...

FOOD DELIVERY DATA VISUALIZATION PROJECT

I will be sharing a very interesting project with you all, where I will use Power BI to analyze the data of a Meal Delivery organization and answer a few of their business questions. While creating the dashboard, I will touch upon a few concepts named 'Calculated Column', 'Calculated Measures', etc. Wherever needed, I will mention some GCPs (Good Case Practices) in the process. ABOUT DATA The data used in this analysis has been taken from the internet and has no direct reference to any organization. It consists of three CSV files -  1. DEMAND DATA - It contains the historical data demand of various products by the centers. 2. MEAL LOOKUP - It contains the details about individual meals. 3. CENTER LOOKUP - It contains information about the various centers delivering the meals. SOLUTION  The very first step before we jump into any analysis is cleaning the data and creating the schema. I won't be covering the data cleaning and schema generation steps here as it goes...

8 Benefits of converting DATA into excel TABLE

Excel Tables are powerful data objects which make life easier for users. It improves data accessibility and analysis with the help of derived rows and columns. Before jumping to the benefits, I want to show how we convert data to an excel table. The sample data used in my example has been taken from  https://www.contextures.com/xlsampledata01.html .  Converting data to excel table -  Select the data range, go to the Home tab in the ribbon, select Format as Table, and select any format. It will convert your data to an excel table object. This is what the converted table looks like -  Benefits of this conversion -  1. Sorting and Filtering is more accessible - You can click on the small dropdown next to the column name that you want to sort or filter from. 2. Addition of rows and columns is easier - You can simply add adjacent rows and columns and excel will automatically make them a part of the table. 3. Frozen headers - Table headers are by default frozen. He...