Action Principale : annScore
| 1 | PROC CAS; |
| 2 | DATA mycas.iris_score; |
| 3 | SET sashelp.iris; |
| 4 | IF mod(_n_, 5) = 0 THEN DO; |
| 5 | Species = ''; /* Simulate new data without target */ |
| 6 | OUTPUT; |
| 7 | END; |
| 8 | RUN; |
| 9 | |
| 10 | /* Assuming mycas.iris_model table exists from a previous annTrain action */ |
| 11 | QUIT; |