data filter for several graph from a same data table
I want to plot several graphs with the same data source in a same window.Here I put a data filter before the plotting.But it dosen't work.Could anyone help??!
dt= Open( "$SAMPLE_DATA/Big Class.jmp" );
New Windows("mt report",
nwBB = Border box(
dt<< Data Filter(
Add Filter( columns( :group ), Where( :group == 1 ) )
);
V List Box(
Graph Builder(.....);
Graph Builder(.....);
)
)
);
...