SAS code for getting the unique value of all variables in one dataset
To get the unique values of all variables in one dataset, you can use the following SAS code:
proc sql;
select distinct *
from your_dataset;
quit;
This code will select all distinct values across all variables in the your_dataset dataset. You can replace your_dataset with the name of your dataset.
原文地址: https://www.cveoy.top/t/topic/grcX 著作权归作者所有。请勿转载和采集!