JMP Pro 13. I have several graphs that I'm generating with a FOR loop. I'm attempting to append each looped graph to a lineup box.
-The loop uses a list (CleanList) that is generated at another point in the script to define the Group X in the graph. But first I use that CleanName to create a filter and data subset so the graph for that loop uses only that data.
-I hid some of the basic graph stuff (Graph stuff here...) just to keep my script below easy to follow.
-I get a error (PMcntLUB/*###*/ <<append) in the log when I attempt to run it.
-Ultimately, this Lineup Box is inserted into a tab box with the other tabs being other components of my script.
-I'm not dead set on using a lineup box and am happy to try alternatives so long as I can end up with a column of graphs generated by my FOR loop that are embedded in the tab box.
PMcntLUB = Lineup Box( N Col( 1 ) );
For(i=1, i<=n items(CleanList), i++,
CleanName = CleanList[i];
dtCleanName = dtPMcntStack << Select Where(:Clean == CleanName) << Subset(Output Table( "dt"||CleanName ) << Show Window( 0 ););
PMcntLUB << append(Graph Builder(
Graph Stuff Here,
Variables(X( :ProcessEndDateTime ),Y( :RFhours ),Group X(:Clean)),
More Graph Stuff Here),
);
);