Hello,
I would like to remove some variables based on some criteria in their label. Specifically, I want to delete 'B' shares but these are only mentioned in the label and not in the name of the variable.
For example:
Name: INSTITUTO_ROSENBUCH_DE_BIOLOGIA
Label: INSTITUTO ROSENBUCH DE BIOLOGIA 'B'
The code I used to apply for names is the following, but how can I transform it to use it on labels (if possible)?
proc sql noprint;
select trim(compress(name))
into :drop_vars separated by ' '
from SASHELP.VCOLUMN
where libname = upcase('WORK')
and
memname = upcase('Sample')
and
upcase(name) like '%ERROR%'
;
quit;
%put &drop_vars.;
data data2;
set Sample;
drop &drop_vars.;
run;
Many thanks in advance!
data have;
a=202;
label a ="temp new";
b=102;
label b="temp";
c=302;
label c ="var c";
run;
proc contents data =have out=contents;run;
proc sql;
select name into :var_list separated by ' '
from contents
where label ? 'temp';
quit;
%put &var_list;
data want;
set have;
drop &var_list;
run;
In the above code I am dropping columns that has temp in their label.
Hint: Open Your data source and see if label column is present.
Change your last condition from name to your label criteria. If it has the quotes make sure to include them in your search.
It would be a filter such as
label_column_name like "% 'B'"
data have;
a=202;
label a ="temp new";
b=102;
label b="temp";
c=302;
label c ="var c";
run;
proc contents data =have out=contents;run;
proc sql;
select name into :var_list separated by ' '
from contents
where label ? 'temp';
quit;
%put &var_list;
data want;
set have;
drop &var_list;
run;
In the above code I am dropping columns that has temp in their label.
Many thanks for your answers both!
Registration is now open for SAS Innovate 2025 , our biggest and most exciting global event of the year! Join us in Orlando, FL, May 6-9.
Sign up by Dec. 31 to get the 2024 rate of just $495.
Register now!
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.
Ready to level-up your skills? Choose your own adventure.