SAS to JSL - Do Loops...
I am a long time SAS user being forced to learn JSL... Things I found easy in SAS seem so difficult in JSL... Could someone show me how Do Loops work in JSL by sharing with me JSL code that would generate the following nested do loop table using JSL? data frustration; do temp = 1 to 10 by 1; do press = 5 to 20 by 5; do time = 1 to 1000 by 20; output; end...