Hi,
How to grow a sublist of the existing List in proc iml?
for eg.
proc iml;
Variable = ListCreate();
Residual = ListCreate();
Call ListAddItem(Variable,{1 2 34});
call ListAddItem(Variable,{12 4 2 2});
Call ListAddItem(Residual,{1 2 34});
call ListAddItem(Residual,{12 4 2 2});
All = ListCreate({"Variable","Residual"});
call ListSetItem(All,"Variable",Variable);
call ListSetItem(All,"Residual",Residual);
package load ListUtil; /* load ListPrint module */
run ListPrint(All);
In the above program, I have a named sublist Variable inside the List All. There is LISTGETSUBITEM function to get the subitem but there is no support to add an item to the sub list or to grow it dynamically. This is useful in cases where all the elements of a sublist are not available right in the beginning and want to maintain a structure like above.
OK, then use ListAddItem in my previous example, which will add it to the end of the list.
If you need to do this dynamically, you can use the sequence "GetSubItem", "AddItem", "SetSubItem". To make it more efficient, my colleague suggested using the 'm' flag, which does not require making a copy of the memory:
tmp = ListGetSubItem(All, "Residual", 'm'); /* move sublist w/out making a copy */
call ListAddItem(tmp, {10 5 100}); /* add new item */
call ListSetSubItem(All,"Residual", tmp, 'm'); /* move memory back to All; tmp is null */
You can use
call ListInsertItem(Residual,3, 1:3); /* insert */
call ListSetItem(All,"Residual",Residual); /* replace */
OK, then use ListAddItem in my previous example, which will add it to the end of the list.
If you need to do this dynamically, you can use the sequence "GetSubItem", "AddItem", "SetSubItem". To make it more efficient, my colleague suggested using the 'm' flag, which does not require making a copy of the memory:
tmp = ListGetSubItem(All, "Residual", 'm'); /* move sublist w/out making a copy */
call ListAddItem(tmp, {10 5 100}); /* add new item */
call ListSetSubItem(All,"Residual", tmp, 'm'); /* move memory back to All; tmp is null */
Nearly 200 sessions are now available on demand with the SAS Innovate Digital Pass.
Explore Now →