Suppose my data is divided into 2 vectors:
x <- c(100, 400, 120)
y <- c(500, 112)
I could calculate the median, joining the two vectors and then using the median function.
median(c(x,y))
[1] 120
Suppose for some reason I c...
asked on
30.12.2016 / 02:08