Hi, Using proc uni-variate procedure, I found that the following Obs are outliers: proc univariate; var resids; qqplot resids; run; SAS Output Extreme ObservationsLowest HighestValue Obs Value Obs -8.40972 188 5.12990 691 -7.62763 211 5.12990 695 -7.46829 570 5.12990 810 -7.38851 367 6.26658 612 -6.79448 588 7.25340 610 I want to remove these all 10 observations from data set. Is there any handy code for outlier removal? Thank you.
... View more