cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Emma1
Level III

Paste Login Report (ANOVA) on the back of a graph

Hello,

 

I ask for your help today to learn how to paste login report (Anova) to the back of a graph on JMP

For example, paste this report to the back of this graph like this :

 

 

Emma1_0-1620219125190.png

 

Thank you,

Emma

1 REPLY 1

Re: Paste Login Report (ANOVA) on the back of a graph

I realize this isn't what you requested, but assuming you intend to do this by scripting (you could also do this by cutting and pasting graphics images in an image editor of course), there is a direct way to do this... IF you are willing to locate the report to the side. I'm not sure how to superimpose graphics using JSL.

 

Cheers,

Brady

 

brady_brady_0-1620400726783.png

 

 

Names Default To Here(1);

dt = open("$Sample_Data\Big Class.jmp");
nw = new window("test",
	hlb = hlistbox(
		ow = dt << Oneway( Y( :height ), X( :age ), All Pairs( 1 ) )		
	)
);


pic = report(ow)[outlinebox("Connecting Letters Report")][tablebox(1)]<<get picture;

hlb << append (picturebox(pic));