- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
solved
solved
MGO
5 REPLIES 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to save the script IF the report was generated from new windows ???
Instead of opening the reports in the new window, could you just load the platforms directly? Using this method you should have the entire platform available:
Names default to here(1);
dt = Open( "$Sample_data/big class.jmp" );
New Window("Reports",
H List Box(
Bivariate( Y( :height ), X( :weight ) ),
Oneway( Y( :height ), X( :age ) )
)
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to save the script IF the report was generated from new windows ???
Created:
Oct 31, 2021 09:45 PM
| Last Modified: Jan 25, 2022 11:16 PM
(1434 views)
| Posted in reply to message from ih 10-29-2021
solved
MGO
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to save the script IF the report was generated from new windows ???
I don't know of a straight forward way to take an existing report and save the script from it without a couple steps in between. But you can build the new window with a for loop:
Names default to here(1);
dt = Open( "$Sample_data/iris.jmp" );
New Window("Reports", hlb = H List Box( ) );
cols ={:Sepal width, :Petal length, :Petal width};
for(c=1, c<=n items(cols), c++,
hlb << Append( Bivariate( Y( cols[c] ), X( :Sepal length ) ) )
);
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to save the script IF the report was generated from new windows ???
Created:
Nov 2, 2021 04:22 AM
| Last Modified: Jan 25, 2022 11:19 PM
(1406 views)
| Posted in reply to message from ih 11-01-2021
solved
MGO
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: How to save the script IF the report was generated from new windows ???
See Line Up Box display box.