cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • New to JMP? Join us Sept. 23-24 for the Early User Edition of Discovery Summit, tailor-made for new users. Register now for free!
  • Your voice matters! Tell us how you prefer to receive JMP updates, so we can tailor our communication to your needs. Take short survey.
  • See how to access JMP Marketplace - and - find, create & share add-ins to extend your JMP. Watch video.

Discussions

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

How to save JMP drawings to a variable by reading them as binary files in JSL?

It do not need to save the local image file first.
Instead, the graph is written directly into a variable as a binary file in PNG format

Thanks!

dt=Open("$SAMPLE_DATA/Big Class.jmp");
p1 = dt << Graph Builder(
	Variables( X( :weight ), Y( :height ), Group X( :age ), Color( :sex ) ),
	Elements( Bar( X, Y, Legend( 5 ), Response Axis( "X" ) ) )
);
2 REPLIES 2
lala
Level IX

回复: How to save JMP drawings to a variable by reading them as binary files in JSL?

OK

img = p1 << getpicture ;
lala
Level IX

回复: How to save JMP drawings to a variable by reading them as binary files in JSL?

2024-03-05_16-35-13.png

Recommended Articles