Hi friends,
For suppose i have a program :
data demo;
set oracle_data;
run;
Let us say oracle_data dataset have 100 observaions , so our demo should also have 100 observations if i want to add 10 more observations to demo dataset which are not present in oracle_data.
How do i do this?
Can i use datalines statement here? To append new observations?
Thanks in advance .
data subset10;
set oracle_data(obs=10);
run;
data demo;
set oracle_data subset10;
run;
One way you can add is by adding another dataset which is a subset of what you have and limit to 10
It depends on where your observations are coming from.
One way is to create a new dataset with the observations, using either cards and then append the datasets.
You can use either proc append, a data step or a union all step in proc sql, as a few options.
Hi,
Simply store those additional observations (10 from your example) in a separate dataset and user Proc Append after the data step that you have.
Join us for SAS Innovate 2025, our biggest and most exciting global event of the year, in Orlando, FL, from May 6-9. Sign up by March 14 for just $795.
Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.
Find more tutorials on the SAS Users YouTube channel.