When I try to generate my program, it works with some variables and it fails with others. For example, the var called "selfemp" works and "tmnhunef" fails.
The error message is "BL_RSP_[VARNAME]_EB_MP_AUS is an illegal or reserved name in "MATRIX(5,3) BL_RSP_[VARNAME]_EB_MP_AUS"
It seems that the issue appears in this part of the code :
Code: Select all
FOR %IDC {%LIST}
FOR %VAR {%VAR_to_PLOT}
matrix(!horz,3) mp_rsp_{%VAR}_{%MODEL}_{%IDC}
delete rtmp*
rowvector rtmp
FOR !i=1 TO !horz
rtmp = @rowextract(S_{%VAR}_{%IDC},!i)
mp_rsp_{%VAR}_{%MODEL}_{%IDC}(!i,1) = @quantile(rtmp,0.84)
mp_rsp_{%VAR}_{%MODEL}_{%IDC}(!i,2) = @quantile(rtmp,0.50)
mp_rsp_{%VAR}_{%MODEL}_{%IDC}(!i,3) = @quantile(rtmp,0.16)
NEXT
NEXT
NEXT
!horz = 3+2
%model= "EB_MP"
Could you help me ?
Thanks
