weighted.mean1(c(7,1,2,4,10,15),c(1,1/3,1/3,1/3,1,1)) # 8.583333333
weighted.mean1(c(1,2,4,7,10,15),c(1/3,1/3,1/3,1,1,1)) # ordered differently 8.583333333
weighted.mean1(c(7,7/3,10,15)) # same as previous, but unweighted:
# '1','2','4 of weights='1/3' are replaced by '7/3' (weight=1)
weighted.mean1(c(7,1,2,4,10),c(1,1/3,1/3,1/3,1)) # 6.444444444
weighted.mean1(c(7,1,2,4,10)) # 4.8
weighted.mean1(c(7,1,NA,4,10),c(1,1/3,1/3,1/3,1),na.rm =TRUE) # 7
Run the code above in your browser using DataLab