I'm noticing some inconsistent behavior when applying the median() function to dataframes. "Inconsistent behavior" usually means that I don't understand something, so I hope someone will be willing to clear this up for me.
I realize that some functions (e.g., min(), max()) convert the dataframe into a vector and return the corresponding value for the entire df while mean() and sd() return a value for each column. While a bit confusing, those differences in behavior don't cause many problems since most code would break if a scalar is returned instead of a vector. However, median() seems to be inconsistent. For example:
dat <- data.frame(x=1:100, y=2:101)
median(dat)
Returns a vector:[1] 50.5 51.5
But, sometimes it breaks:
dat2 <- data.frame(x=1:100, y=rnorm(100))
median(dat2)
Returns: [1] NA NA
Warning messages:
1: In mean.default(X[[1L]], ...) :
argument is not numeric or logical: returning NA
2: In mean.default(X[[2L]], ...) :
argument is not numeric or logical: returning NA
However, median(dat2$x) and median(dat2$y) both yield the correct result.
Also consider the following:
dat3 <- data.frame(x=1:100, y=1:100)
dat4 <- data.frame(x=1:100, y=100:199)
In the above, median(dat3) returns [1] 50.5 NA while median(dat4) returns [1] 50.5 149.5! I would expect both or neither of these to work. So, I clearly am not understanding just how the median() function is working.
Further, functions like sd, mean(), min() and max() all yield their expected (if seemingly inconsistent) results in all of the above cases.
I know that I can use something like sapply(dat2, median) to get the necessary result, but am wondering why the R gods chose to implement these core stats functions in a way that, at least on the surface, seems inconsistent. I suspect that I, and probably other neophytes, are probably not understanding some fundamental concept, and I'd appreciate your insight.