Action Principale : calculateErrorRate
| 1 | DATA casuser.ref_data; LENGTH id $ 10 text $ 100; INFILE DATALINES delimiter=','; INPUT id $ text $; DATALINES; |
| 2 | id1,this is a sample |
| 3 | id2,another example here |
| 4 | ; RUN; |
| 5 | DATA casuser.hyp_data; LENGTH id $ 10 text $ 100; INFILE DATALINES delimiter=','; INPUT id $ text $; DATALINES; |
| 6 | id1,this is sample |
| 7 | id2,an other example here |
| 8 | ; RUN; |