R
📄 6 ArticlesImport and Export into Googlesheet and AWS using R
Import and Export Googlesheet in R using GoogleSheet4 packageRecently I was working to sync some data from R to AWS […]
R Data Science Interview Questions | Day 39
Practice all the R Data Science Interview Questions. You can try to solve the same questions in Python also. Create […]
R interview Questions
Today is Day 10 and we will try to solve the top 10 R Interview questions. These questions will revolve […]
Janta Hack – Analytics Vidhya R code
install.packages(“stringr”)library(stringr) data = read.csv(“C:/Users/User/Desktop/Hackathon/JantaHack/train.csv”)head(data)str(data) data$product <- str_count(data$ProductList,”;”)+1head(data)data$hours <- with(data, difftime(endTime,startTime,units=”hours”) )data$min <- with(data, difftime(endTime,startTime,units=”mins”) )data$x <- as.double(data$endTime – data$startTime, units […]
R – Cheat Sheet
This is a cheat sheet which aims on giving all the important concepts in a very crisp manner. Just give […]