I have a code in Splus, but have to convert it into R, which is not a big thing. However I am very new to both softwares. This is the code I am struggling with:
bestmodind <- cbind(c(1:length(postprob)),postprob)
bestmodind <-sort.col(bestmodind,c(1,2), columns.to.sort.by=2,ascending=F)
The first command works fine, but the sort.col isn't an R command.
R does not recognize this command. What is sort.col doing, and how can I do the same thing in R? How do I modify this command?
Help appreciated!
Is this what you want?