cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

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