Random Forest in R ..Recommending College based on Rank and Branch Choice
R Notebook-College and Rank This is an R Markdown Notebook. When you execute code within the notebook, the results appear beneath the code. Try executing this chunk by clicking the Run button within the chunk or by placing your cursor inside it and pressing Ctrl+Shift+Enter . Hide ds<-read.csv( "collegedatainput.csv" ) head(ds) Rank College Branch 1 1 IITB CSE 2 3 IITB CSE 3 10 IITB CSE 4 20 IITB CSE 5 30 IITB CSE 6 40 IITB CSE Hide str(ds) 'data.frame': 47 obs. of 3 variables: $ Rank : int 1 3 10 20 30 40 50 260 270 280 ... $ College: Factor w/ 3 levels "IITB","IITD",..: 1 1 1 1 1 1 1 1 1 1 ... $ Branch : Factor w/ 3 levels "CSE","EEE","MECH": 1 1 1 1 1 1 1 2 2 2 ... Hide ds Rank College Branch 1 1 IITB CSE 2 3 IITB CSE 3 10 IITB CSE 4 20 IITB CSE 5 30 IITB CSE 6 40...