Hello All,
can someone suggest me a sas code to create a blank dataset with 5 variables and 10 observations.
Its urgent..!!
thanks in advance
When you say blank, do you mean a dataset with all missing values?
Yes..Correct..
If it has 10 observations, it sure won't be "blank". In terms of datasets, I would reserve that word for a dataset that has only structure, but no observations.
If you just want 10 observations of missing variables, write a data step that has a format statement for your variables and does 10 outputs.
Here is one way:
data want;
format a b c $2.;
format d e 8.;
do _n_=1 to 10;
output;
end;
run;
Art, CEO, AnalystFinder.com
Thank you so much.. 🙂
Seriously though, why are you creating blank datasets. This not only creates this work (and question) but also creates the other question of how to remove them per you other post. What is it your trying to do, there will be far better methods than creating loads of blank datasets and then deleting them, thats just a waste of processing power.
/* you can use the below simple code as well */
data z;
input id1$ id2$ id3$ id4$ id5$;
cards;
a b c d e
a b c d e
a b c d e
a b c d e
a b c d e
a b c d e
a b c d e
a b c d e
a b c d e
a b c d e
;
run;
data blank;
set z;
id1="";
id2="";
id3="";
id4="";
id5="";
run;
Why?
data want;
length var1-var5 $10;
do _n_=1 to 10; output; end;
run;
Tom,
I am new to SAS i just tried to create blank dataset with 5 var and 10 obs.
April 27 – 30 | Gaylord Texan | Grapevine, Texas
Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!
Still thinking about your presentation idea? The submission deadline has been extended to Friday, Nov. 14, at 11:59 p.m. ET.
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.