Data-Forge
Fork of the Data-Forge project.
See the official repository for the original data forge project source code.
See the official registry for the original data forge npm package.
Please support the original authors work!
The JavaScript data transformation and analysis toolkit inspired by Pandas and LINQ.
Implemented in TypeScript.
Used in JavaScript ES5+ or TypeScript.
Install
To install for Node.js and the browser:
npm install --save data-forge
If working in Node.js and you want the functions to read and write data files:
npm install --save data-forge-fs
Quick start
Data-Forge can load CSV, JSON or arbitrary data sets.
Parse the data, filter it, transform it, aggregate it, sort it and much more.
Use the data however you want or export it to CSV or JSON.
Here's an example:
const dataForge = require('data-forge');
require('data-forge-fs');
dataForge.readFileSync('./input-data-file.csv')
.parseCSV()
.parseDates(["Column B"])
.parseInts(["Column B", "Column C"])
.parseFloats(["Column D", "Column E"])
.dropSeries(["Column F"])
.where(row => predicate(row))
.select(row => transform(row))
.asCSV()
.writeFileSync("./output-data-file.csv");
From the browser
Data-Forge has been tested with Browserify and Webpack. Please see links to examples below.
If you aren't using Browserify or Webpack, the npm package includes a pre-packed browser distribution that you can install and included in your HTML as follows:
<script language="javascript" type="text/javascript" src="node_modules/data-forge/dist/web/index.js"></script>
This gives you the data-forge package mounted under the global variable dataForge
.
Please remember that you can't use data-forge-fs or the file system functions in the browser.
Features
- Import and export CSV and JSON data and text files (when using Data-Forge FS).
- Or work with arbitrary JavaScript data.
- Many options for working with your data:
- Filtering
- Transformation
- Extracting subsets
- Grouping, aggregation and summarization
- Sorting
- And much more
- Great for slicing and dicing tabular data:
- Add, remove, transform and generate named columns (series) of data.
- Great for working with time series data.
- Your data is indexed so you have the ability to merge and aggregate.
- Your data is immutable! Transformations and modifications produce a new dataset.
- Build data pipeline that are evaluated lazily.
- Inspired by Pandas and LINQ, so it might feel familiar!
Platforms
Documentation
Resources