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

error in set col value with JSL formula

Open( "$SAMPLE_DATA/Big Class.jmp" ); 
dt=(Data Table( "Big Class" ) << Tabulate(
	Add Table(
		Column Table( Grouping Columns( :sex ) ),
		Row Table( Analysis Columns( :height ), Statistics( Mean ) )
	)
)) << Make Into Data Table;
dt<<New Column ("total", numeric, continious);
:total<<formula(:F+:M);// this line works by itself but causes error in script

:total<<formula(:F+:M);// this line works by itself after the script but causes error in the script?

1 ACCEPTED SOLUTION

Accepted Solutions
ErraticAttack
Level VI

Re: error in set col value with JSL formula

I personally try to avoid any auto-scoping in JSL, especially when it comes to column names.  If you explicitly scope :TOTAL to DT:TOTAL then this works.  The reason for the failure is because dt is not the current data table, and the current data table does not have a :TOTAL column.

 

Open( "$SAMPLE_DATA/Big Class.jmp" ); 
dt=(Data Table( "Big Class" ) << Tabulate(
	Add Table(
		Column Table( Grouping Columns( :sex ) ),
		Row Table( Analysis Columns( :height ), Statistics( Mean ) )
	)
)) << Make Into Data Table;
dt<<New Column ("total", numeric, continious);
dt:total<<formula(:F+:M);// this line works by itself but causes error in script

 

Jordan

View solution in original post

2 REPLIES 2
ErraticAttack
Level VI

Re: error in set col value with JSL formula

I personally try to avoid any auto-scoping in JSL, especially when it comes to column names.  If you explicitly scope :TOTAL to DT:TOTAL then this works.  The reason for the failure is because dt is not the current data table, and the current data table does not have a :TOTAL column.

 

Open( "$SAMPLE_DATA/Big Class.jmp" ); 
dt=(Data Table( "Big Class" ) << Tabulate(
	Add Table(
		Column Table( Grouping Columns( :sex ) ),
		Row Table( Analysis Columns( :height ), Statistics( Mean ) )
	)
)) << Make Into Data Table;
dt<<New Column ("total", numeric, continious);
dt:total<<formula(:F+:M);// this line works by itself but causes error in script

 

Jordan

Re: error in set col value with JSL formula

Thanks, and it also explains why the last line "magically" works, when I switch to the tabulate table :)

Recommended Articles