cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Try the Materials Informatics Toolkit, which is designed to easily handle SMILES data. This and other helpful add-ins are available in the JMP® Marketplace
Choose Language Hide Translation Bar
A JMP® script might return the following warning: Cannot find FrameBox[ "ScatterPlot Matrix" ]

Due to a required change related to HelpKeys, scripts that are created in an earlier release of JMP and then run in JMP® 16.1 and later releases might result in the following log message:

Cannot find FrameBox[ "Scatterplot Matrix" ] at {}

In the Dispatch() section of the Scatterplot Matrix script, change the string "Scatterplot Matrix" to "Scatterplot Matrix Plot."  See the following example:

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = dt << Scatterplot Matrix(
	Y( :height ),
	X( :weight ),
	Matrix Format( "Lower Triangular" ),
	SendToReport(
		Dispatch(
			{},
			"ScatterPlot Matrix", //Change to "Scatterplot Matrix Plot"
            FrameBox,
			{Row Legend(
				age,
				Color( 1 ),
				Color Theme( "JMP Default" ),
				Marker( 0 ),
				Marker Theme( "" ),
				Continuous Scale( 0 ),
				Reverse Scale( 0 ),
				Excluded Rows( 0 )
			)}
		)
	)
);

 

[Previously JMP Note 68448]

Details
Operating System
macOS Windows
Reported Version
16.1
Products JMP JMP Pro