See the JMP's ability to quickly download JSON data from the WEB and organize it into a table form.
But I failed to master the method.Just learn to download this JSON file using JSL.Ask an expert how to organize data into tables.
Thanks!
Here's one method of creating a data table from a text file that contains JSON,
data = Load Text File( "json1.txt", JSON );
dt = JSON To Data Table( As JSON Expr( data ) );
Here's one method of creating a data table from a text file that contains JSON,
data = Load Text File( "json1.txt", JSON );
dt = JSON To Data Table( As JSON Expr( data ) );
Thank Ryan_Gilmore!
Instead, I simply used the JSL code that downloaded the web data using JMP and added a later line of converted code.Please continue to guide me, thank you!
I wrote it this way.
url = "http://……";
request = New HTTP Request(
URL(url),
Method("GET")
);
data = request << Send;Wait(0);
dt = JSON To Data Table( As JSON Expr( data ) );
dt = JOpen( url, JSON );I SEE.Thanks!