cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Sign-in to the JMP Community will be unavailable intermittently Dec. 6-7 due to a system update. Thank you for your understanding!
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.
  • JMP 19 is here! Learn more about the new features.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
lala
Level IX

How to use JSL to open JSON-formatted files with json default window, only enter the intermediate state?

open C:\2.json with JSON default window, only enter this state

Thanks!

2023-10-14_18-07-19.png

4 REPLIES 4

Re: How to use JSL to open JSON-formatted files with json default window, only enter the intermediate state?

Hello,

Did you select node that you want by selecting the Row checkboxes?

Guillaume
lala
Level IX

Re: How to use JSL to open JSON-formatted files with json default window, only enter the intermediate state?

I don't need to select a line, just automatically enter the screen
 
Thank you for your help!

Re: How to use JSL to open JSON-formatted files with json default window, only enter the intermediate state?

Oh yes, sorry.

You can maybe try this:

 

Open(
           "/c:/2.json",
           JSON Wizard( 1 )
);
Guillaume
lala
Level IX

Re: How to use JSL to open JSON-formatted files with json default window, only enter the intermediate state?

Thanks! But that's not what I want.
 
The following code that I get from this interface is the correct data.
 
dt=Open(chartoblob( "C:\2.json" ),JSON Settings(Stack(0),Col("/root/List",Column Name("List"),Fill("Use Once"),Type("Pandas Values"),Format({"Best"}),Modeling Type("Continuous"))),JSON Wizard(0));

Recommended Articles