Blog

March 25, 2019 5 min read

Join, Merge, Append and Concatenate

Working with multiple data frames often involves joining two or more tables to in bring out more no. of columns from another table by joining on some sort of relationship which exists within a table or appending two tables which is adding one or …
January 7, 2019 3 min read

Attributes, Methods and Functions in python

Understand the concept of attributes, methods and functions under the context of a dataframe Attributes Attributes are the features of any object. They can be accessed by following a dot and the name of the following attribute. For example: …
January 5, 2019 2 min read

Subsetting a dataframe in pandas

Importing packages and datasets import pandas as pd # Fetching data from url as csv by mentioning values of various paramters data = pd.read_csv("https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data", header = None, …
January 1, 2019 2 min read

T-SQL - Working with subqueries and APPLY

Note : The following scripts are the part of the course on edx titled as: Querying Data with Transact-SQL - Querying Data with Transact-SQL These queries works on AdventureWorks database and information regarding the same can be accessed by visiting …
January 1, 2019 6 min read

T-SQL - Using Functions and aggregating data

``Note : The following scripts are the part of the course on edx titled as: Querying Data with Transact-SQL - `` [Querying Data with Transact-SQL](https://www.edx.org/course/querying-data-with-transact-sql-0) `` These queries works on AdventureWorks …
January 1, 2019 3 min read

T-SQL - Querying multiple tables with Joins

Note : The following scripts are the part of the course on edx titled as: Querying Data with Transact-SQL - Querying Data with Transact-SQL These queries works on AdventureWorks database and information regarding the same can be accessed by visiting …
January 1, 2019 1 min read

T-SQL - Querying multiple tables using Set Operators

Note : The following scripts are the part of the course on edx titled as: Querying Data with Transact-SQL - Querying Data with Transact-SQL These queries works on AdventureWorks database and information regarding the same can be accessed by visiting …
January 1, 2019 5 min read

T-SQL - Introduction (Part 2)

Note : The following scripts are the part of the course on edx titled as: Querying Data with Transact-SQL - Querying Data with Transact-SQL These queries works on AdventureWorks database and information regarding the same can be accessed by visiting …
January 1, 2019 6 min read

T-SQL - Introduction (Part 1)

Note : The following scripts are the part of the course on edx titled as: Querying Data with Transact-SQL - Querying Data with Transact-SQL These queries works on AdventureWorks database and information regarding the same can be accessed by visiting …
January 1, 2019 5 min read

Indexing and Sorting a dataframe using iloc and loc

There are multiple ways in pandas by which a dataframe can be indexed i.e, selecting particular set of rows and columns from a dataframe. For a detailed description over this topic, once can refer official pandas documentation - Indexing and …