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

Data Science is one of those domains which are less explored in colleges but is in high demand in the I.T. sector.The combination of Maths and Technology makes it even more interesting. I have been working as a ...

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