1

In regression analysis it could happen that some samples are more relevant than others (i.e. they are more important in understanding the underlying model). Is there any technique to train a regressor by weighting training samples according to their relevance? A trivial example could be giving 0 weight to outliers.

firion
  • 225
  • 1
  • 11

1 Answers1

0

You could probably add a dichotomous variable as covariate on the more importand samples. See how that affects your model

Or more importantly use weighted least squares. Read about it more here: http://www.itl.nist.gov/div898/handbook/pmd/section1/pmd143.htm

arezaie
  • 157
  • 9