cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to move from signal modeling to system modeling at the first JMP Aerospace Analytics webinar. Register. June 18, 1 p.m. US Eastern Time.

Discussions

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

Is there a way to find all of the variables in the Here scope?

I am currently looking at this documentation page and seeing that you can use Show Globals() or Show Symbols(). In this case I would like to know what all is in the Here scope specifically. 

1 ACCEPTED SOLUTION

Accepted Solutions
mat-ski
Level III

Re: Is there a way to find all of the variables in the Here scope?

Sorry I would delete this question as it's actually pretty straightforwardly answerable once you realize that Here is just a normal Namespace. The answer is:

 

Namespace( "here" ) << Get Keys

View solution in original post

2 REPLIES 2
mat-ski
Level III

Re: Is there a way to find all of the variables in the Here scope?

Sorry I would delete this question as it's actually pretty straightforwardly answerable once you realize that Here is just a normal Namespace. The answer is:

 

Namespace( "here" ) << Get Keys

Re: Is there a way to find all of the variables in the Here scope?

You can also use Help > Scripting Index > Functions > Programming:

 

name.PNG

Recommended Articles