cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Choose Language Hide Translation Bar
Lovisa
Level I

How to parse a list of JSON objects to separate columns?

I'm trying to import the following data to JMP but all external data objects ends up in the same column. Is there a way to get it in separate columns? I get it to work with numerical values but not with strings. All strings ends up in the same columns with comma separated values. Thankful for your help.

[{
"id": 1234,
"date": "2022-04-06",
"batch": {
"id": 1553,
"date": "2022-02-01"
},
"externalData": [
{
"orderNumber": 1,
"batchNumber": "bo09",
"partNumber": 121
},
{
"orderNumber": 1,
"batchNumber": "hoi112",
"partNumber": 129
},
{
"orderNumber": 1,
"batchNumber": "1ka10",
"partNumber": 432
} ,
{
"orderNumber": 1,
"batchNumber": "11la0",
"partNumber": 432
}
]
},{
"id": 1234,
"date": "2022-04-06",
"batch": {
"id": "1553",
"date": "2022-02-01"
},
"externalData": [
{
"orderNumber": 1,
"batchNumber": "14",
"partNumber": 121
},
{
"orderNumber": 1,
"batchNumber": "112",
"partNumber": 129
},
{
"orderNumber": 1,
"batchNumber": "110",
"partNumber": 432
}
]
}]
1 ACCEPTED SOLUTION

Accepted Solutions
jthi
Super User

Re: How to parse a list of JSON objects to separate columns?

Writing separate formulas for each of the results is one option

jthi_0-1669037859451.png

Parse JSON(:Column 1[1])["res1"];

This can also be scripted to be more automatic

-Jarmo

View solution in original post

6 REPLIES 6
stan_koprowski
Community Manager Community Manager

Re: How to parse a list of JSON objects to separate columns?

Hi @Lovisa,

Depending on which version of JMP you are using you can import the JSON file directly into JMP using the File Open command.

Import JSON File-->OpenImport JSON File-->Open

 

Import JSON Red Triangle Option Tall FormatImport JSON Red Triangle Option Tall Format

Select the "Tall guess" option from the red triangle menu option.

And after clicking OK you get the JMP data table with a source script that you can reuse as needed for importing additional files.

Open(
	"$Desktop/example_json.json",
	JSON Settings(
		Stack( 0 ),
		Row( "/root/externalData" ),
		Col(
			"/root/externalData/orderNumber",
			Column Name( "orderNumber" ),
			Fill( "Use Once" ),
			Type( "Numeric" ),
			Format( {"Best"} ),
			Modeling Type( "Continuous" )
		),
		Col(
			"/root/externalData/batchNumber",
			Column Name( "batchNumber" ),
			Fill( "Use Once" ),
			Type( "Character" ),
			Format( {"Best"} ),
			Modeling Type( "Continuous" )
		),
		Col(
			"/root/externalData/partNumber",
			Column Name( "partNumber" ),
			Fill( "Use Once" ),
			Type( "Numeric" ),
			Format( {"Best"} ),
			Modeling Type( "Continuous" )
		)
	),
	JSON Wizard( 0 )
)

 

cheers,

Stan

Lovisa
Level I

Re: How to parse a list of JSON objects to separate columns?

Thanks for your reply! I've tried the different options in the import wizard but I would like to separate the list into different columns not rows as in your solution. Is there a way to do that?

jthi
Super User

Re: How to parse a list of JSON objects to separate columns?

Depends on how you want the data to look like, it might be that JSON Wizard cannot format it like you want to.

 

JSON Import Wizard with Huge Guess (Wide will most likely also work):

jthi_1-1650469452121.png

Then you can separate batchNumber to different columns:

jthi_2-1650469503579.png

 

Or using a bit more complicated JSON Import Wizard settings:

jthi_4-1650470122416.png

And from here you can use different tools JMP offers to split/stack/transpose the data.

 

You could also leave batch.id with empty values and use that to calculate list index

jthi_5-1650470572441.png

 

If(Row() == 1, val = 0);
If(Is Missing(:batch.id),
	val,
	val
	++);
val;
-Jarmo
jthi
Super User

Re: How to parse a list of JSON objects to separate columns?

Have you tried the different options JSON Import Wizard provides you with? Here is for example Wide Guess with Stack enabled:

jthi_2-1650380734917.png

 

How do you want the data to look like?

-Jarmo
bayesfactor1
Level II

Re: How to parse a list of JSON objects to separate columns?

If my JSON data isn't a file but is a column in an existing datatable, how can I parse the JSON into separate columns? In the example screenshot below, I want to parse the "results" column out into 3 separate columns: result1, result2, result3.

bayesfactor1_0-1669036760473.png

 

 

jthi
Super User

Re: How to parse a list of JSON objects to separate columns?

Writing separate formulas for each of the results is one option

jthi_0-1669037859451.png

Parse JSON(:Column 1[1])["res1"];

This can also be scripted to be more automatic

-Jarmo