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 enlarge pictures with JSL?

Big Class Families.jmp

Thanks!

2023-04-18_10-18-25.png

1 REPLY 1
jthi
Super User

Re: How to enlarge pictures with JSL?

<< Scale is one option

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class Families.jmp");

wait(1);
Column(dt, "Picture") << Set Each Value(
	img = :picture;
	img << scale(3);
	img;
);
-Jarmo

Recommended Articles