- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Closing data tables but keeping plot results
Hi,
I have written JMP script to manipulate some data tables and produce graphs all on the one window. Part of this involved creating subsets. Therefore i have alot of tables open. I know how to hide them but understand this still uses alot of JMP memory. Therefore i want to close them. However when i close them i lose my plots.
How do i keep my window showing all of the plots?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: Closing data tables but keeping plot results
Make your chart using its individual display box object(s). That way, when you close your data table, the chart will still display.
Normally, when you close a data table to a canned (linked) JMP chart, the chart disappears of course. But by making the chart composed of its individual object(s) via its report, it will still display after closing the data table. Here's roughly how to do this below, you will want to find your exact chart object references using Show Tree Structure (e.g. PictureBox, etc, etc). Finally, you will likely need to append it into your original window reference, which I do not show below. cheers... dj
myVar = Bivariate(
Y(:YVALUE),
X(:XVALUE)
);
myVarR = myVar<<report;
<<append(myVarR[PictureBox(1)]);
- « Previous
-
- 1
- 2
- Next »