This tag is for questions relating to weighted least squares, a generalization of ordinary least squares and linear regression in which the errors covariance matrix is allowed to be different from an identity matrix.
Weighted least squares (WLS) or, weighted linear regression is an extension of Ordinary Least Squares regression. It occurs when all the off-diagonal entries of $Ω$ (the correlation matrix of the residuals) are null; the variances of the observations (along the covariance matrix diagonal) may still be unequal (heteroscedasticity).
- Weighted least squares has several advantages over other methods, including:
$a)~$It’s well suited to extracting maximum information from small data sets.
$b)~$It is the only method that can be used for data points of varying quality.
Disadvantages include:
$a)~$It requires that you know exactly what the weights are. Estimating weights can have unpredictable results, especially when dealing with small samples. Therefore, the technique should only be used when your weight estimates are fairly precise. In practice, precision of weight estimates usually isn’t possible.
$b)~$Sensitivity to outliers is a problem. A rogue outlier given an inappropriate weight could dramatically skew your results.
For more details please find the following references: https://www.itl.nist.gov/div898/handbook/pmd/section1/pmd143.htm https://en.wikipedia.org/wiki/Weighted_least_squares https://www.statisticshowto.com/weighted-least-squares/ https://online.stat.psu.edu/stat501/lesson/13/13.1