- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
using JSL to rename 'Oneway( )' output filename?
I have been using 'output table name( )' to rename all of my summary tables, but this does not seem to work for with oneway( ):
example:
dt_Oracle<<Oneway(
Y( :Average ),
X( :TOOL_ID ),
Each Pair( 1 ),
Box Plots( 1 ),
Comparison Circles( 1 ),
X Axis Proportional( 0 ),
Grand Mean( 0 ),
By( :Rec ),
output table name("OneWay_"||tool||"_Average by Tool_ID_"||startDate||"_to_"||endDate||"_original"),
SendToReport(
Dispatch(
{},
"Oneway Plot",
FrameBox,
{DispatchSeg(
Box Plot Seg( 1 ),
{Box Style( "Outlier" ), Line Color( "Red" )}
), DispatchSeg(
Box Plot Seg( 2 ),
{Box Style( "Outlier" ), Line Color( "Red" )}
)}
)
)
);
I'm guessing it does not work since Oneway( ) is not a table? is there any way to rename the oneway( ) report using JSL?
thanks!
Accepted Solutions
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: using JSL to rename 'Oneway( )' output filename?
You can use << set window title.
Example:
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = dt << Oneway( Y( :Height ), X( :Age ) );
obj << set window title( "test" );
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: using JSL to rename 'Oneway( )' output filename?
You can use << set window title.
Example:
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = dt << Oneway( Y( :Height ), X( :Age ) );
obj << set window title( "test" );
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
Re: using JSL to rename 'Oneway( )' output filename?
perfect! thank you!