Scripting Guide > Creating Projects > Create a Simple Project
发布日期: 04/13/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 

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.

需要更多信息?有问题?从 JMP 用户社区得到解答 (community.jmp.com).