Blog

September 15, 2019 1 min read

List, Create and Move Folder within Azure Datalake Store Gen1 using R and Rest API

The following code snippets are on creating a connection to Azure Data Lake Storage Gen1 using R with Service-to-Service authentication with client secret and client id using REST API to list, create and move any folder in a azure data lake store …
September 6, 2019 1 min read

Read and Write Excel from Azure Datalake Store using R and Rest API

The following code snippets are on creating a connection to Azure Data Lake Storage Gen1 using R with Service-to-Service authentication with client secret and client id using REST API and read and write an excel file. Import Prerequisite …
September 2, 2019 2 min read

Access Azure Active Directory Groups using R

The following code snippets are on creating a connection to Azure Active Directoy using R with Service-to-Service authentication with client secret and client id using REST API and fetch Active Directory`s groups and associated details with them …
August 26, 2019 3 min read

Part 5 - Plotting Using Seaborn - Radar

Introduction and Data preparation Please follow the folloing links regarding data preparation and previous posts to follow along - For Data Preparation - Part 0 - Plotting Using Seaborn - Data Preparation{:target="_blank"} For Part 1 - …
August 23, 2019 3 min read

Part 4 - Plotting Using Seaborn - Heatmap, Lollipop Plot, Scatter Plot

Introduction and Data preparation Please follow the folloing links regarding data preparation and previous posts to follow along - For Data Preparation - Part 0 - Plotting Using Seaborn - Data Preparation{:target="_blank"} For Part 1 - …
August 23, 2019 4 min read

Part 3 - Plotting Using Seaborn - Donut

Introduction and Data preparation Please follow the folloing links regarding data preparation and previous posts to follow along - For Data Preparation - Part 0 - Plotting Using Seaborn - Data Preparation{:target="_blank"} For Part 1 - …
August 23, 2019 2 min read

Part 2 - Plotting Using Seaborn - Distribution Plot, Facet Grid

Introduction and Data preparation Please follow the folloing links regarding data preparation and previous posts to follow along - For Data Preparation - Part 0 - Plotting Using Seaborn - Data Preparation{:target="_blank"} For Part 1 - …
August 21, 2019 3 min read

Part 1 - Plotting Using Seaborn - Violin, Box and Line Plot

Introduction and Data preparation Please follow the folloing links regarding data preparation and previous posts to follow along - For Data Preparation - Part 0 - Plotting Using Seaborn - Data Preparation{:target="_blank"} Violin Plot …
August 20, 2019 3 min read

Part 0 - Plotting Using Seaborn - Data Preparation

Import Preliminaries and datasets import pandas as pd import seaborn as sns import matplotlib.pyplot as plt import matplotlib.pylab as plb import warnings warnings.filterwarnings('ignore') test_scores = pd.read_csv("Data/Test …
July 20, 2019 2 min read

Nearest Neighbors using L2 and L1 Distance

Preliminaries Distance Matrics L2 Norm L1 Norm Nearest Neighbor Using L2 Distance Using L1 Distance Predictions Errors Confusion Matrix Using Pandas From Scratch Preliminaries import numpy as np # Load data set and code labels as 0 = ’NO’, 1 = ’DH’, …