cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
EduardDerks
Level II

Equations in JMP pro Notebooks

Is it possible to get formatted equations in JMP Notebooks, like in Jupyter?

My version is 19.0.5 JMP-pro.

 

Eduard P.P.A. Derks, PhD
Senior Data Scientist
Avient Protective Materials
3 REPLIES 3

Re: Equations in JMP pro Notebooks

This might be a good idea to submit to the Wish List. The developers are likely looking for what people want to see in Notebooks.

Closest I can come up with is appending a formula using the Expr as Picture () command:

Screenshot 2026-02-23 134855.png

EduardDerks
Level II

Re: Equations in JMP pro Notebooks

I'll submit my wishes for future versions. Would be great if the JMP Notebook's could behave in a similar way as Jupyter Notebooks, especially when it comes to reporting equations.

Thanks for the suggestion!.

 

Eduard P.P.A. Derks, PhD
Senior Data Scientist
Avient Protective Materials
julian
Community Manager Community Manager

Re: Equations in JMP pro Notebooks

Hi @EduardDerks.,

@Jed_Campbell 's suggestion to add this to the wish list is a great idea, please do that.

Also, there is a slight modification to @Jed_Campbell's suggestion that might get you slightly closer, which is to omit Current Window(), and start with the bare put-to operator ( i.e., << ), which tells Notebook to emit the resulting display box to the block output directly, rather than at the bottom of the window.

<< Append (
	Expr As Picture( Expr( (-b + Sqrt( b ^ 2 - 4 * a * c )) / (2 * a) ) )
)

formula.png

I hope this helps!

jules

Recommended Articles