For the latest version of JMP Help, visit JMP.com/help.

Scripting Guide > Creating Projects > Create a Simple Project
Publication date: 09/28/2021

Create a Simple Project

A JMP project provides a way to organize files that you use in an analysis and display the output. A simple project might display the data table, graphs, and reports on separate tabs in the project window.

project = New Project();
project << Run Script(
	dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
	dt << Run Script( "Bivariate" );
	dt << Run Script( "Distribution" );
);

Figure 15.1 shows the project with selected bars, showing that the graph is still linked to the data table.

Figure 15.1 Example of a Simple Project 

Example of a Simple Project

Note: The best way to learn how to script a project is to create it interactively, change the project file’s extension to .jsl, and open the file in JMP.

Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).