https://github.com/dataship/beam
Get collimate'd data into Frame, in Node or the Browser
https://github.com/dataship/beam
column-store data data-science
Last synced: 7 months ago
JSON representation
Get collimate'd data into Frame, in Node or the Browser
- Host: GitHub
- URL: https://github.com/dataship/beam
- Owner: dataship
- Created: 2017-06-27T16:04:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-05-17T18:36:15.000Z (over 1 year ago)
- Last Synced: 2025-02-19T23:49:06.981Z (8 months ago)
- Topics: column-store, data, data-science
- Language: JavaScript
- Homepage:
- Size: 16.6 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# beam
Download [collimate](https://github.com/dataship/collimate)'d files for use in a [Frame](https://github.com/dataship/frame).## install
For use from the command-line:
`npm install -g dataship-beam`
For use as a library:
`npm install --no-optional dataship-beam`
This will exclude the argument parsing library for a smaller install.
## command line usage
`beam http://somedomain.com/data/somedataset/`
where `somedataset` serves an `index.json` file in a suitable format.
## usage
First, create a data set with [collimate](https://github.com/dataship/collimate).```javascript
var beam = require('dataship-beam'),
Frame = require('dataship-frame');beam.read("path/to/data/set/", function(err, data){
var columns = data.columns;
var keys = data.keys;var frame = new Frame(columns, keys);
});
```