cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Have your say in shaping JMP's future by participating in the new JMP Wish List Prioritization Survey
Choose Language Hide Translation Bar
lala
Level VII

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 VII

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 VII

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));