cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
pniel
Level I

scene parallel to data tables calculations

Hello.
I am trying to make a scene in order to hide the calculations that I do in a data table
(It takes 1 minute)
Unfortunately I can’t hide the data table, does somebody knows how to run a scene parallel to massive calculations in data tables, thanks a lot.

pini
2 REPLIES 2
pmroz
Super User

Re: scene parallel to data tables calculations

You can minimize the data table:

dt << minimize window(1);

and then restore it with

dt << minimize window(0);

Alternatively you can make the table invisible with

dt << show window(0);

and then make it magically reappear with

dt << show window(1);

I've had a spot of trouble with show window(0) when my code doing calculations on dt hits a bug and the "show window(1)" doesn't get reexecuted.
pniel
Level I

Re: scene parallel to data tables calculations

hi, tanks but dt<Is there another way?

Recommended Articles