1.
Select Help > Sample Data Library and open Quality Control/Steam Turbine Historical.jmp.
3.
Select File > New > Application.
4.
Select Blank Application.
7.
Select Edit > Select All.
8.
Select Format > Add Container > H List Box to align the reports horizontally.
9.
Select each report and type yvar next to Y Variable in the Objects pane.
11.
Select the Fuel, Steam Flow, Steam Temp, and MW variables and then click the Y button.
12.
Figure 15.12 Multivariate Application
Tip: The absolute path to the data table is inserted automatically in the application’s Table property. If the data is sample data, the $SAMPLE_DATA path variable is automatically used in the path. You can also enter an absolute or relative path. Remember that the user must have access to this path.
3.
4.
Select Run Application from the Application Builder red triangle menu.
Figure 15.13 Example of Filtered Content
1.
Select Help > Sample Data Library and open SATByYear.jmp.
4.
Select File > New > Application and choose Blank Application.
5.
Double-click Data Filter Context Box.
Figure 15.14 Adding a Data Filter Context Box
6.
Under Containers, drag a H List Box into the Data Filter Context Box.
Figure 15.15 Adding a H List Box
Figure 15.16 Adding Local Data Filter and Two Reports
Figure 15.17 Copying Local Data Filter and Reports
Figure 15.18 Selecting Both Data Filter Context Boxes and the V List Box Icon
11.
In the Local Data Filter at top, click SAT Math, then click Add. Move the slider to see how it only impacts the reports at top. Do the same for the bottom set of reports.
3.
Select Date from the list and then select m/d/y.
6.
Select Run Application from the Application Builder red triangle menu.
Figure 15.19 Example of a Date Selector
The Launcher with Report sample application combines a platform launch window with the resulting report. The sample application is displayed when you select File > New > Application.
1.
Select File > New > Application and click the Launcher with Report sample.
You will copy and paste JSL from this sample into your copy. Notice that the Iris.jmp sample data table opens when you open the application.
2.
Select File > New > Application and click Blank Application.
Figure 15.20 Customizing the Application
3.
Click the Scripts tab and select Radviz from the Namespace list.
dt = Current Data Table();
Figure 15.21 Customizing the LaunchModule
7.
Click the LaunchModule tab and drag a V List Box (under Containers) onto the workspace.
Figure 15.22 Adding the H List Box
11.
Because you have made many changes, select File > Save and rename the file. Make sure that .jmpappsource is selected as the file type.
5.
Select DataTable1 in the Objects pane.
The current data table, Iris.jmp, appears in the Path box.
Figure 15.23 Adding the Panel Box
Figure 15.24 Adding the Col List Box
Figure 15.25 Adding a Panel Box
Figure 15.26 Adding a Cancel Button
11.
12.
Select File > Save to save your changes in the.jmpappsource file.
6.
Select File > Save to save your changes in the.jmpappsource file.
11.
Select File > Save to save your changes in the.jmpappsource file.
6.
Select File > Save to save your changes in the.jmpappsource file.
6.
Select File > Save to save your changes in the.jmpappsource file.
Figure 15.27 Iris.jmp Graph
3.
On Windows, select File > Save As, select JMP Application File from the Save as type list, and then click Save.
On Macintosh, select File > Export, select JMP Application, and click Next to save the application.
4.
Distribute the .jmpapp file to users. This file cannot be modified.
5.
Save the .jmpappsource file so you can edit the application and resave it as a JMP application.
Figure 15.28 Adding a Script Interactively
Button5Press=Function({this},
	// This function is called when the button is pressed
	name = this << Get Button Name;
);
SetY = Function({},
	// This function will be called when the Y button is
	// pressed
 
	items = ColumnList << Get Selected;
	YList << Append(items);
);
Get Selected is passed to the ColumnList because you gave the Col List Box this variable name (ColumnList) in the object properties. Get Selected returns a list of the selected columns. Append(items) appends the selected columns to YList, the variable assigned to the Col List Box in the Cast Selected Columns into Roles window.

Help created on 7/12/2018