I have two vectors where each element represents a value log2 transformed.
v1 = c(1.4, 2.1, 1.9)
v2 = c(-1.2, -2.2, -1.9)
I'd like to compute the mean of v1 and v2 to show that v1 has higher average abundance than v2. Can I simply compute the mean of each vector to accomplish this? mean(v1) would give 1.8 and mean(v2) give -1.77
Regards,
v2in my example. – julio514 Jun 29 '23 at 21:04