hi,
I am trying to add a column to an existing table and I want al, the rows in the column to have a value 1
i used this syntax, but it didn't work;
newcolumn = 1
any help?
How about:
data want;
set sashelp.class;
retain newcolumn 1;
run;
HTH,
Art
Your suggestion sounds like it should have worked (although using RETAIN to set a default value is probably more efficient), e.g.
data mydata;
set mydata;
newcolumn = 1;
run;
or
data mydata;
set mydata;
retain newcolumn 1;
run;
Are you getting an error of some kind?
Thanks DF, your response helped me spot my error.
It is fine now.
How about:
data want;
set sashelp.class;
retain newcolumn 1;
run;
HTH,
Art
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 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.