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.
Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!
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.