mirror of
https://github.com/yabwon/SAS_PACKAGES.git
synced 2025-12-11 03:04:35 +00:00
Documentation updated: - preprint of SAS Global Forum 2021 article added. - files from the live demo added.
13 lines
169 B
SAS
13 lines
169 B
SAS
/*** HELP START ***/
|
|
/*
|
|
`myLib.smallDataset` data
|
|
*/
|
|
/*** HELP END ***/
|
|
|
|
data myLib.smallDataset;
|
|
do n = ., -1, 0, 1;
|
|
m = put(n, fmtNum.);
|
|
output;
|
|
end;
|
|
run;
|