Action Principale : mbcFit
| 1 | DATA mycas.sample_data; |
| 2 | DO i = 1 to 100; |
| 3 | x1 = rand('NORMAL', 10, 2); |
| 4 | x2 = rand('NORMAL', 20, 5); |
| 5 | x3 = rand('NORMAL', 5, 1); |
| 6 | OUTPUT; |
| 7 | END; |
| 8 | DO i = 1 to 100; |
| 9 | x1 = rand('NORMAL', 30, 3); |
| 10 | x2 = rand('NORMAL', 10, 2); |
| 11 | x3 = rand('NORMAL', 15, 3); |
| 12 | OUTPUT; |
| 13 | END; |
| 14 | RUN; |