cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • 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!
  • Use World Cup data to build models, explore spatial relationships, and create informative visualizations in JMP. Register. July 17, 2 pm US Eastern Time.
  • 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
jlmbs
Level III

Fix error: Send Expects Scriptable Object in access or evaluation of 'List

I am trying to write a JSL to get the summary of replicates on a concatenated data table. The code below throws an error, could you tell why and how to fix it?

 

dt_summary=dt_concatenated_lst << Summary(
	Group( :Sample name ),
	Mean( :"A280 Concentration(mg/ml)"n ),
	Mean( :"AvgA280 Concentration (mg/ml)"n ),
	Mean( :"CVA280 Concentration (%)"n ),
	Freq( "None" ),
	Weight( "None" ),
	Link to original data table( 0 )
);

 

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: Fix error: Send Expects Scriptable Object in access or evaluation of 'List

What is the value of your variable named

dt_concatenated_lst

It needs to be of the form

Data Table( "xxxxxxx" )

where "xxxxxxx" is the name of the data table you want to be summarized.  Given the name of the variable, I am guessing the variable is a JMP list, not a simple data table reference.

Jim

View solution in original post

1 REPLY 1
txnelson
Super User

Re: Fix error: Send Expects Scriptable Object in access or evaluation of 'List

What is the value of your variable named

dt_concatenated_lst

It needs to be of the form

Data Table( "xxxxxxx" )

where "xxxxxxx" is the name of the data table you want to be summarized.  Given the name of the variable, I am guessing the variable is a JMP list, not a simple data table reference.

Jim

Recommended Articles