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
rvs
rvs
Level II

From make into data table to output data table name

Hi all,

I am a novice in JSL and may need your help.  From the sample script below, would like the output table name as " Big Class Row%". Thank you in advance.   

(Data Table( "Big Class" ) <<

Contingency(

  Y( :sex ),

  X( :age ),

  Contingency Table(

  Count( 0 ),

  Total %( 0 ),

  Col %( 0 ),

  Row %( 1 ),

  Expected( 0 ),

  Deviation( 0 ),

  Cell Chi Square( 0 ),

  Col Cum( 0 ),

  Col Cum %( 0 ),

  Row Cum( 0 ),

  Row Cum %( 0 )

  ),

  Mosaic Plot( 0 ),

  Tests( 0 ),

  Horizontal Mosaic( 1 )

)) << Make Into Data Table

3 REPLIES 3
Jeff_Perkinson
Community Manager Community Manager

Re: From make into data table to output data table name

You can get a reference to the data table created by the Make Into Data Table message, and then set the name of that data table.


dt =(Data Table("Big Class")<<



Contingency(


  Y( :sex ),


  X( :age ),


  Contingency Table(


  Count( 0 ),


  Total %( 0 ),


  Col %( 0 ),


  Row %( 1 ),


  Expected( 0 ),


  Deviation( 0 ),


  Cell Chi Square( 0 ),


  Col Cum( 0 ),


  Col Cum %( 0 ),


  Row Cum( 0 ),


  Row Cum %( 0 )


  ),


  Mosaic Plot( 0 ),


  Tests( 0 ),


  Horizontal Mosaic( 1 )



)) << Make Into Data Table;



dt<<set name("Big Class Row%");


-Jeff

-Jeff
rvs
rvs
Level II

Re: From make into data table to output data table name

Jeff,

Appreciate and thank you so much for the help!

I just joined the community and this is my first Q and got answered.

saitcopuroglu
Level IV

Re: From make into data table to output data table name

JMP Pros are really helpful!

I am mostly into jsl and formulas producing Interactive HTML outputs.

I learned a l lot from them and my each answer has been answered, (some of them are rocket science for my beginner skills though...)