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 create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

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