Hi all,
I's using JMP 18 and I have a Python script that runs several tests, queries data from SQL, and saves the results with different names. I then execute JSL scripts for plotting the data. However, each time a JSL script runs, it opens the JMP Home window. If I run 10 tests simultaneously, it opens 10 JMP Home windows, which blocks my screen view. Although I'm making the data tables invisible, I still want to find a way to make the JMP Home window invisible as well. Is there any way to achieve this?
This is my sample code for one test.
// Load the selected CSV file
dt = Open("C:\Users\Documents\Workspace\Projects\BanffC\Experiments\sanity.csv", invisible);
// Create the Graph Builder
graph = dt << Graph Builder(
Size( 1002, 693 ),
Variables(
X( :rf_frequency_hz ),
Y( :evm_db ),
Group X( :mcs ),
Group Y( :board_id ),
Overlay( :run_tag )
),
Elements( Points( X, Y, Legend( 13 ) ), Line( X, Y, Legend( 15 ) ) ),
Local Data Filter(
Add Filter(
columns( :bw_mhz ),
Modeling Type( :bw_mhz, Nominal ),
Where( :bw_mhz == 8 ),
Display( :bw_mhz, N Items( 4 ) )
)
)
);