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

In evaluation of glue ?

Hi,

 

I was just writing a simple code but I ran into preview text error: Unable to open file, in access evaluation of "Glue"

 

Can anyone advise me on the thing I didn't do correctly?

dt = Open (); //open a csv or excel file from any folder
Sa = Current data table ();

 .... ... ...  

1 ACCEPTED SOLUTION

Accepted Solutions
txnelson
Super User

Re: In evaluation of glue ?

I suspect you have objects in your JMP memory area that have not been cleared.  I have 2 suggestionsw.

  1. Close and restart your JMP session
  2. Isolate the memory for your JSL by adding Names Default to Here(1); to your JSL.  That will insure that your JSL will be in it''s own memory NameSpace 
    Names Default To Here( 1 );
    dt = Open(); //open a csv or excel file from any folder
    Sa = Current Data Table();
Jim

View solution in original post

3 REPLIES 3
txnelson
Super User

Re: In evaluation of glue ?

I suspect you have objects in your JMP memory area that have not been cleared.  I have 2 suggestionsw.

  1. Close and restart your JMP session
  2. Isolate the memory for your JSL by adding Names Default to Here(1); to your JSL.  That will insure that your JSL will be in it''s own memory NameSpace 
    Names Default To Here( 1 );
    dt = Open(); //open a csv or excel file from any folder
    Sa = Current Data Table();
Jim

Re: In evaluation of glue ?

I tried the second suggestion, but the problem still persisted. I'll check on the 1st one then. 

Re: In evaluation of glue ?

Alright, I tried the first option and it worked fine ! Thanks again @txnelson 

Recommended Articles