Solved – term for min + (max – min) / 2

r

I'm looking for a function to do that in R. I know how to write that function. Just don't want to reinvent something.

Best Answer

min + (max - min) / 2 = (min + max) / 2
It's called the mid-range. I don't know of an existing function in R.

Related Question