When it comes to Simulation using the ranexp function, what would I do if the exponential distribution is greater than 1? For example when I use the following code the output produced is a blank table: data list1; do i=1 to 50; between=.4*ranexp(1.2); serve=.4*ranexp(1.2); output list1; end; proc print data=list1; run; How would I get this to work and have an output produced? Any help would be much appreaciated. Thanks.
... View more