cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Instantly extract effect sizes, F-ratios, and FDR-adjusted p-values from your models with the Calculate Effects Sizes extension, available now in the JMP Marketplace!
  • 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.

Discussions

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

JSL - Adding a Table to a Journal

Another JSL question, I'm trying to put a table in Journal using JSL.  Here is what I am trying to do:

 

current_data_table << New Data View;

// Creating the Journal

nw = New Window("Journal Right Here", <<Journal,
	ob = Outline Box("Section 1",
        Text Box("Some description that we need here.", << Markup),
        Current Journal()[TableBox(current_data_table)]
    )
);

Everything seems to be working but the TableBox code... I am sure it is something easy but it is stumping me.

 

Thank you in advance.

14 REPLIES 14

Re: JSL - Adding a Table to a Journal

Actually, there is the matrix display box, too.

 

Names Default To Here( 1 );
myMatrix = [1 2 3, 4 5 6, 7 8 9];
nw = New Window( "test", vlb = V List Box() );
vlb << Append( Matrix Box( myMatrix ) );
ram
ram
Level IV

Re: JSL - Adding a Table to a Journal

Thank you
ram
ram
Level IV

Re: JSL - Adding a Table to a Journal

Thank you
Herrera5238
Level III

Re: JSL - Adding a Table to a Journal

Is it possible to change font size for the table?

Here are my attempts but I can't seem to be able to have it actually make a change.

Names Default to Here(1);

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

nw = New Window("Tables", <<Journal);


// Attempt 1
/*tableVBox = V List Box(<< Append (Data Table Box (dt) ));
tableVBox << font("Times New Roman", 50);

nw << Append ( Outline Box( "Big Class Table", tableBox ));*/


// Attempt 2
tableDTB = Data Table Box (dt);
tableDTB << Optimize Display;

nw << Append ( Outline Box( "Big Class Table", V List Box(<< Append (tableDTB )) ));
txnelson
Super User

Re: JSL - Adding a Table to a Journal

The data table, when moved into a journal, is convered into a TableBox().  The only way that I know of to change the text size in a table box, is in the JMP Preferences.  However, that will change the text size for all areas within JMP, not just the table box.

Jim

Recommended Articles