danfo.readJSON
Reads a JSON file into DataFrame.
Reading JSON files from local disk
const dfd = require("danfojs-node")
dfd.readJSON("./user_names.json")
.then(df => {
df.head().print()
}).catch(err=>{
console.log(err);
})Reading JSON files from a URL
Reading an input file object in the browser
Last updated