#Read
Tags: 5 posts
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 …
June 10, 2019
•
1 min read
Connect to azure datalake store using R
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. Follow the link, for more details on different ways to connect …
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 …
December 23, 2018
•
1 min read
Read data into pandas
Provide column names while reading a dataset in pandas # Import the required modules import pandas as pd Reading the dataset using read.csv() function with mentioning column names in names parameters.
#Fetching data from url as csv by mentioning …
December 20, 2018
•
2 min read
Connect to azure datalake store using python
The following code snippets are on creating a connection to Azure Data Lake Storage Gen1 using Python with Service-to-Service authentication with client secret and client id.
Follow the link, for more details on different ways to connect to Azure …