Skip to content

Instantly share code, notes, and snippets.

@abhisheksoni27
Last active June 18, 2017 19:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save abhisheksoni27/f1bbf1c50aa717c90d49256f8e64af4a to your computer and use it in GitHub Desktop.
Save abhisheksoni27/f1bbf1c50aa717c90d49256f8e64af4a to your computer and use it in GitHub Desktop.
csv()
.fromFile(csvFilePath)
.on('json', (jsonObj) => {
csvData.push(jsonObj);
})
.on('done', () => {
dressData(); // To get data points from JSON Objects
performRegression();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment