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


Scripting Guide > Compatibility Notes > Compatibility Issues in JMP 16.1
Publication date: 11/29/2021

Compatibility Issues in JMP 16.1

Legend Position

Position() has been phased out so that only Legend Position() is output in saved scripts. Previously saved scripts that include both the Position() and Legend Position() commands generate an error even though the script runs fine.

For example, change the following code:

{Legend Position( {3, [-4, -1], 5, [0, 1, 2]} ),
Position( {-4, -1, 0, 1, 2} )}

It should read as follows to avoid the error:

{Legend Position( {3, [-4, -1], 5, [0, 1, 2]} ),
Legend Position( {-4, -1, 0, 1, 2} )}

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