Copyrights and Apple Pie

Like all writers (and artists, musicians, software developers, and other creators of content) I am concerned about the problem of copyright infringement. (Here is my previous post about this.)  So I was interested to find out that while I was at the Western Users of SAS Software conference, there was a veritable brouhaha about this […]

Generate random numbers

options pageno=1 nodate ls=80 ps=64;data u1(keep=x);&nbsp &nbsp &nbsp seed = 104;&nbsp &nbsp &nbsp do i = 1 to 5;&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp call ranuni(seed, x);&nbsp &nbsp &nbsp &nbsp &nbsp &nbsp output;&nbsp &nbsp &nbsp end;&nbsp &nbsp &nbsp…