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.
14 lines
194 B
SAS
14 lines
194 B
SAS
/*** HELP START ***/
|
|
/*
|
|
`myLib.biggerDataset` data
|
|
*/
|
|
/*** HELP END ***/
|
|
|
|
data myLib.biggerDataset;
|
|
do i = ., -1e6 to 1e6;
|
|
j = put(i, fmtNum.);
|
|
k = ranuni(17);
|
|
output;
|
|
end;
|
|
run;
|