r - Mann Whitney U test -
i want create function can calculate u value of function in r , calculates p-value using exact distribution 10000 replications . r function
u<-function(x,y){ n1<-length(x) n2<-length(y) d<-n1+n2 } but no know procedure calculate mann whitney u test.here,x , y 2 differen , independent sample.
Comments
Post a Comment