Saving a table with empty numerical values as JSON results in invalid JSON primitive?
If a save a table with empty values in one of the numerical columns like this:New Table( "testEmpty",
Add Rows( 2 ),
New Column( "Col1",
Character,
"Nominal",
Set Selected,
Set Values( {"test", "test"} )
),
New Column( "Col2",
Numeric,
"Continuous",
Format( "Best", 12 ),
Set Values( [., .] )
)
)
as a JSON file, it will result in this:[
{
"Col1" : "test",
"Col2" : .
},
{
...