• Stars
    star
    4,301
  • Rank 9,551 (Top 0.2 %)
  • Language
    CoffeeScript
  • License
    MIT License
  • Created almost 11 years ago
  • Updated 4 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Open-source Javascript Pivot Table (aka Pivot Grid, Pivot Chart, Cross-Tab) implementation with drag'n'drop.

npm cdnjs tests license

PivotTable.js

PivotTable.js is a Javascript Pivot Table library with drag'n'drop functionality built on top of jQuery/jQueryUI and originally written in CoffeeScript by Nicolas Kruchten.

It is available under an MIT license from CDNJS and NPM and Bower under the name pivottable. And on Packagist.org, it is nicolaskruchten/pivottable.

PivotTable.js can be used with Python/Jupyter and R/RStudio and you can try it right now in your browser on a CSV file.

Are you using React? Check out the React port: react-pivottable.

What does it do?

PivotTable.js' basic function is to enable data exploration and analysis by turning a data set into a summary table and then optionally adding a true 2-d drag'n'drop UI to allow a user to manipulate this summary table, turning it into a pivot table, very similar to the one found in older versions of Microsoft Excel with a bunch of extra developer-oriented features and some visualization effects. With optional add-ons, the summary table can be rendered as various kinds of charts, turning the pivot table into a pivot chart.

image

The animation above is based on the Canadian Parliament 2012 dataset example.

Where are the demos/examples?

There are lots on the examples page but here are some good entry points:

Why is it good?

  • it's lightweight: the core (without chart support) is a single file with less than 1000 LOC of CoffeeScript, compiles down to 6.3kb of Javascript minified and gzipped, and depends only on jQuery and jQueryUI's 'sortable'
  • it works wherever jQuery and jQueryUI work (tested with jQuery 1.8.3 and jQueryUI 1.9.2)
  • it works acceptably fast in Chrome on commodity hardware up to around a hundred thousand records, depending on the cardinality of the attributes.
  • its UI is localizable
  • its layered architecture allows for summary table generation with or without the pivot table UI around it (if you don't use the UI, then there is no dependency on jQueryUI)
  • it works with common input formats
  • its derived attributes can be created on the fly based on the whole input record by passing in a function
  • its complex aggregation functions can compute values based on the whole input record (e.g. weighted averages)
  • it has built-in support for basic heatmap and bar chart renderers, and optional extra renderers that add charting or TSV export support
  • its extension points allow aggregation functions, table output, UI and visualizations to be tailored to specific applications
  • it works on mobile devices with jQuery UI Touch Punch
  • it has a test suite

How do I use the UI?

PivotTable.js implements a pivot table drag'n'drop UI similar to that found in popular spreadsheet programs. You can drag attributes into/out of the row/column areas, and specify rendering, aggregation and filtering options. There is a step-by-step tutorial in the wiki.

How do I load the code?

PivotTable.js implements the Universal Module Definition (UMD) pattern and so should be compatible with most approaches to script loading and dependency management: direct script loading i.e. from CDNJS or with RequireJS, Browserify etc. For the latter options, you can grab it from NPM with npm install pivottable or via Bower with bower install pivottable.

If you are loading the scripts directly (as in the examples), you need to:

  1. load the dependencies:
    1. jQuery in all cases
    2. jQueryUI for the interactive pivotUI() function (see below)
    3. D3.js, C3.js and/or Google Charts if you use charting plugins
  2. load the PivotTable.js files:
    1. pivot.min.js
    2. any plugins you wish to use

The dependencies and PivotTable.js files can be loaded:

  1. By copying the files from their official distributions to your project and loading them locally (the dist directory is where you will find the PivotTable.js files)
  2. From a Content Distribution Network (CDN) like CDNJS

(The examples load dependencies from CDNJS and PivotTable.js locally)

How do I use the code?

There are two main functions provided by PivotTable.js: pivot() and pivotUI(), both implemented as jQuery plugins, as well as a bunch of helpers and templates.

pivot()

Once you've loaded jQuery and pivot.js, this code (demo):

$("#output").pivot(
    [
        {color: "blue", shape: "circle"},
        {color: "red", shape: "triangle"}
    ],
    {
        rows: ["color"],
        cols: ["shape"]
    }
);

appends this table to $("#output") (the default, overridable behaviour is to populate the table cells with counts):

image

pivotUI()

A slight change to the code (calling pivotUI() instead of pivot() ) yields the same table with a drag'n'drop UI around it, so long as you've imported jQueryUI (demo):

$("#output").pivotUI(
    [
        {color: "blue", shape: "circle"},
        {color: "red", shape: "triangle"}
    ],
    {
        rows: ["color"],
        cols: ["shape"]
    }
);

image

Note that pivot() and pivotUI() take different parameters in general, even though in the example above we passed the same parameters to both. See the FAQ.

See the wiki for full parameter documentation.

Where is the documentation?

More extensive documentation can be found in the wiki:

How can I build the code and run the tests?

To install the development dependencies, just run npm install, which will create a node_modules directory with the files required to run the Gulp build system.

After modifying any of the .coffee files at the top of the repo, you can compile/minify the files into the dist directory by running node_modules/gulp/bin/gulp.js

Once that's done, you can point your browser to tests/index.html to run the Jasmine test suite. You can view the current test results here.

The easiest way to modify the code and work with the examples is to leave a node_modules/gulp/bin/gulp.js watch serve command running, which will automatically compile the CoffeeScript files when they are modified and will also run a local web server you can connect to to run the tests and examples.

How can I contribute?

Pull requests are welcome! Here are some Contribution Guidelines.

I have a question, how can I get in touch?

Please first check the Frequently Asked Questions and if you can't find what you're looking for there, or in the wiki, then please create a GitHub Issue. When creating an issue, please try to provide a replicable test case so that others can more easily help you. Please do not email the author directly, as you will just be asked to create a Github Issue :)

Copyright & Licence (MIT License)

PivotTable.js is © 2012-2016 Nicolas Kruchten, Datacratic, other contributors

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

jupyter_pivottablejs

Drag’n’drop Pivot Tables and Charts for Jupyter/IPython Notebook, care of PivotTable.js
Python
667
star
2

genealogy

Visualizing family trees
HTML
83
star
3

pyconca

My presentation for PyCon Canada 2015
69
star
4

scipy2021

Data Visualization as the First and Last Mile of Data Science: Plotly Express and Dash
HTML
41
star
5

pydata_global_2021

Jupyter Notebook
26
star
6

dash_callback_chain

Now part of Dash!
Python
21
star
7

semiology_of_graphics

Jupyter Notebook
16
star
8

seriation

R
16
star
9

direction_angrignon

A different kind of subway map
HTML
13
star
10

arduino

My Arduino Sketchbook Directory
C
13
star
11

plotly_img_test

Jupyter Notebook
12
star
12

appleTM

How Apple Names Things
HTML
11
star
13

hackMTL

Inbox Social Network Visualization
Python
7
star
14

context

An XSLT timeline viewer
XSLT
6
star
15

election2013

Dashboard for the Projet Montréal's 2013 election night venue
CoffeeScript
4
star
16

mtlelection2013bysection

Mapping the Montreal 2013 election ballot-box by ballot-box using Leaflet.js
CoffeeScript
4
star
17

silvia

Web-based UI for remote-controlling my Rancilio Silvia espresso machine
JavaScript
2
star
18

kdetool

Kernel Density Estimation and Analysis Tool
Java
2
star
19

mtlelection2017bysection

Map of 2017 Montreal municipal election results
CSS
2
star
20

mtlelection2013bydistrict

Mapping the Montreal 2013 election district by district with a ternary plot using D3.js
HTML
2
star
21

PHPTab

a simple debt-tracking tool by Nicolas Kruchten
CSS
2
star
22

straight_circles

HTML
1
star
23

volunteerdb

PHP
1
star
24

pyviz_diagram

Jupyter Notebook
1
star
25

housenumbers

House Numbers on the Island of Montreal
HTML
1
star
26

mtlelection2021bysection

Jupyter Notebook
1
star
27

galapagos

Galapagos: a Distributed Parallel Evolutionary Algorithm Development Platform
Java
1
star
28

fig2pen

Python
1
star
29

yarnbug

Shell
1
star
30

car2go_map

Python
1
star
31

ngram_years

Heatmap of Google Ngram years mentioning years
Jupyter Notebook
1
star
32

processing

My Processing sketchbook
Java
1
star
33

mtl311

Montreal 311 Service Requests, an Analysis
Jupyter Notebook
1
star
34

OpenMyEWB

an online community system by Nicolas Kruchten, Francis Kung and others
Java
1
star