Scripting Guide > Python > The jmp Package for Python
Publication date: 07/24/2024

The jmp Package for Python

The jmp package for Python is a bridge between JMP and Python that facilitates bidirectional communication. This package exposes JMP functionality to Python and enables Python to treat JMP data tables as Python objects. This package is only available within the JMP Python environment.

Load the jmp package with the Python import function. This example loads the jmp package and opens the Big Class.jmp data table:

import jmp
 
dt = jmp.open(jmp.SAMPLE_DATA + 'Big Class.jmp')
Want more information? Have questions? Get answers in the JMP User Community (community.jmp.com).