cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Register to attend Discovery Summit 2025 Online: Early Users Edition, Sept. 24-25.
  • New JMP features coming to desktops everywhere this September. Sign up to learn more at jmp.com/launch.
Choose Language Hide Translation Bar
lala
Level VIII

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 VIII

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

OK

img = p1 << getpicture ;
lala
Level VIII

回复: 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