search for: test1mast

Displaying 1 result from an estimated 1 matches for "test1mast".

Did you mean: test1master
2012 Sep 10
1
E-mail # 2 / attachments matrix test cases
HI Sridhar, Try this: #I saved the file as .csv. ?testMaster<-read.csv("test1Master.csv") ?test2Sorted<-read.csv("test2Sorted.csv") testMaster1<-testMaster[order(testMaster[,1]),] test2Sorted1<-test2Sorted[order(test2Sorted[,1]),] Combinedat<-as.matrix(merge(testMaster1,test2Sorted1,by="X")) ?rownames(Combinedat)<-Combinedat[,1] Combinedat...