#R
Tags: 6 posts
April 26, 2020
•
1 min read
Handle multiple datetime formats representation using lubridate
Handling Heterogeneous datetime formats We`ll be using parse_date_time function of lubridate package.
Multple datetime formats can be passed under orders attribute of the above function as shown below -
library(lubridate) dates <- c( …
April 24, 2020
•
2 min read
Download Data from a github folder using httr package in R
Import Libraries and Request to the master branch of git The following chunk of code, import required libraries and request the master branch of the required git repository.
library(httr) library(tidyverse) req <- …
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 …
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 …