cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
natalie_
Level V

How to combine multiple data tables and plots into one report?

Hi Everyone,

I have three scripts which create three different data tables and multiple plots.  What I want to do is create one large report.  I see how to combine all the plots into one report/window and I see how to combine the data tables into one report/window.  Is there a two combine the two windows/reports? 

Thanks!

1 ACCEPTED SOLUTION

Accepted Solutions
ms
Super User (Alumni) ms
Super User (Alumni)

Re: How to combine multiple data tables and plots into one report?

One way is to append the reports to a horizontal list box:

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv1 = Bivariate(Y(:weight), X(:height));

biv2 = Bivariate(Y(:age), X(:height));

New Window("Example", hlb = H List Box());

hlb << append(Report(biv1)) << append(Report(biv2));

You can also explore the power of the SheetBox() or "SheetPanelBox" display box types that allow for custom arrangement of other display boxes horizontally and/or vertically.

View solution in original post

7 REPLIES 7
natalie_
Level V

Re: How to combine multiple data tables and plots into one report?

Hi again,

So I combined the scripts to make one data table, and I used new window and append functions to add all the plots to one report.  They are all plotted below each other.  Is there a way to plot some horizontally? 

ms
Super User (Alumni) ms
Super User (Alumni)

Re: How to combine multiple data tables and plots into one report?

One way is to append the reports to a horizontal list box:

Names Default To Here(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv1 = Bivariate(Y(:weight), X(:height));

biv2 = Bivariate(Y(:age), X(:height));

New Window("Example", hlb = H List Box());

hlb << append(Report(biv1)) << append(Report(biv2));

You can also explore the power of the SheetBox() or "SheetPanelBox" display box types that allow for custom arrangement of other display boxes horizontally and/or vertically.

natalie_
Level V

Re: How to combine multiple data tables and plots into one report?

Thank you, it is very simple to arrange the plots on the report!

Peter_Bartell
Level VIII

Re: How to combine multiple data tables and plots into one report?

natalie:Perhaps an opportunity for using Application Builder?

natalie_
Level V

Re: How to combine multiple data tables and plots into one report?

Hi Peter, I would like to start using the application builder soon, too.  I am just not sure how to do it yet.

Peter_Bartell
Level VIII

Re: How to combine multiple data tables and plots into one report?

natalie: Here's some resources on jmp.com that can get you started with Application Builder...tutorials, white papers, videos, etc.:

Analytical Application Development | JMP

natalie_
Level V

Re: How to combine multiple data tables and plots into one report?

Thank you, I will check it out