Some useful recipes¶
JavaScript recipes¶
Simple key/value JSON to table (linewise)¶
return [_.keys(dataNodes["vehicle"]), _.values(dataNodes["vehicle"])];
Simple key/value JSON to table (columnwise)¶
return _.unzip([_.keys(dataNodes["vehicle"]), _.values(dataNodes["vehicle"])]);