Hello everybody,
I use the PROC UNIVARIATE statement to find outleirs.
Here are my codes:
proc univariate data=sampledata05 robustscale plot;
var price;
run;
There is a warning?
WARNING: The number of nonmissing observations for variable Price is too large to compute the robust
measure of scale Qn. The statistic Qn is set to missing
How can I fix that?
Thanks in advance
How many non-missing values do you have for Price? The message says that it can't compute the requested value because you have too many points. If you look into details of Qn there is a factorial component (part of an N choose R ) to the calculation and hence for large N cannot be computed in practical terms.
How many non-missing values do you have for Price? The message says that it can't compute the requested value because you have too many points. If you look into details of Qn there is a factorial component (part of an N choose R ) to the calculation and hence for large N cannot be computed in practical terms.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
Learn how use the CAT functions in SAS to join values from multiple variables into a single value.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.