This function computes weighted Pearson correlation between two vectors with weights given. The output is between -1 and 1 with 1 being highly positively correlated, -1 being highly negatively correlated, and 0 being no correlation
wt.corr(x, y, w)
x | a vector |
---|---|
y | a vector with same length of x |
w | a vector with same length of x and y |
https://en.wikipedia.org/wiki/Pearson_correlation_coefficient#Weighted_correlation_coefficient
a numerical value of weighted Pearson correlation
#> [1] 0.4241453#> [1] -0.8291802