Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Login

Register Now

It will take less than 1 minute to register for lifetime. Bonus Tip - We don't send OTP to your email id Make Sure to use your own email id for free books and giveaways

Import and Export Googlesheet in R using GoogleSheet4 packageRecently I was working to sync some data from R to AWS S3 bucket and Googlesheet.Problem Statement - R has retired the package googlesheet package and now you don't have ...

Continue reading

Practice all the R Data Science Interview Questions. You can try to solve the same questions in Python also. Create your account by clicking on the Login area above and start practicing R Data Science Interview Questions.Once you ...

Continue reading

Today is Day 10 and we will try to solve the top 10 R Interview questions. These questions will revolve around statistics and algorithms with case studies. Try to answer these R interview Questions Before ...

Continue reading

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 = "mins") table(data$product)hist(data$product) table(data$gender)count <- table(data$gender,data$product)barplot(count)str(data)head(data$ET)head(data$endTime)

Continue reading

This is a cheat sheet which aims on giving all the important concepts in a very crisp manner. Just give it a read before starting a new project ...

Continue reading

What are the data structure in R which helps in statistical analysis and graphical representation? Ans.) The following are the data structure in R which are widely used:- a.) Array b.)Matrix c.)Vector d.) Data frame e.) List f.) Tables What is class() function in R? Ans.) This ...

Continue reading