Git Product home page Git Product logo

graphscape's Introduction

GraphScape

GraphScape(paper) is a directed graph model of the visualization design space that supports automated reasoning about visualization similarity and sequencing. It uses the Vega-Lite language to model individual charts. This repository contains source code for building GraphScape models and automatically recommending sequences of charts.

Sequence Recommender API

# graphscape.sequence(charts, options[, editOpSet, callback]) <>

Generate recommended sequence orders for a collection of Vega-Lite charts. The return value is a ranked array of potential sequences and associated metadata.

Input

Parameter Type Description
charts Array An array of Vega-Lite unit charts.
options Object { "fixFirst": true / false }
fixFirst: indicates whether the first chart in charts should be pinned as the first chart of the recommended sequence (true) or not (false).
editOpSet Object (Optional) Specifies custom rules for calculating sequence costss
callback Function (Optional) function(result) { ... }
A callback function to invoke with the results.

Output

The output is a ranked array of objects, each containing a sequence ordering and related metadata.

Property Type Description
charts Array The given input charts.
If options.fixFirst was false, a null specification for an empty chart is included as the first entry.
sequence Array Order of indexes of input charts.
transitions Array Transitions between each pair of two adjacent charts with id.
sequenceCost Number Final GraphScape sequence cost.
sumOfTransitionCosts Number Sum of transition costs.
patterns Array Observed patterns of the sequence.
Each pattern is consist of pattern, appear, coverage, and patternScore.
pattern : An array of transition ids composing the pattern.
appear : An array of indexes of transitions where the pattern appears in the sequence.
coverage : How much the pattern cover the sequence.
patternScore : Final pattern score, which is the same as coverage now.
globalWeightingTerm Number Global weighting term.
filterSequenceCost Number Filter sequence cost.
filterSequenceCostReasons Array Sum of filter value change score
Increment of value : +1
Decrement of value : -1
Otherwise : 0

Sample Code (node.js)

var gs = require('./graphscape.js')
var charts = []; // an array of Vega-Lite charts
charts.push({
  "data": {"url": "data/cars.json"},
  "mark": "point",
  "encoding": {
    "x": {"field": "Horsepower","type": "quantitative"},
  }
});
charts.push({
  "data": {"url": "data/cars.json"},
  "mark": "point",
  "encoding": {
    "x": {"field": "Horsepower","type": "quantitative"},
    "y": {"field": "Miles_per_Gallon","type": "quantitative"}
  }
});
var options = { "fixFirst": false };
console.log(gs.sequence(charts, options));

# graphscape.transition(source chart, target chart) <>

Generate a transition from a source Vega-Lite chart to a target Vega-Lite chart. The transition has the minimum edit operation costs.

Input

Parameter Type Description
source chart Object A Vega-Lite unit chart.
target chart Object A Vega-Lite unit chart.

Output

The output is a ranked array of objects, each containing a sequence ordering and related metadata.

Property Type Description
mark Array Edit operations in mark category.
transform Array Edit operations in transform category.
encoding Array Edit operations in encoding category.
cost Number Sum of all costs of edit operations in this transition.

Sample Code (node.js)

var gs = require('./graphscape.js')
var source = {
  "data": {"url": "data/cars.json"},
  "mark": "point",
  "encoding": {
    "x": {"field": "Horsepower","type": "quantitative"},
  }
};
var target = {
  "data": {"url": "data/cars.json"},
  "mark": "point",
  "encoding": {
    "x": {"field": "Horsepower","type": "quantitative"},
    "y": {"field": "Miles_per_Gallon","type": "quantitative"}
  }
};

console.log(gs.transition(source, target));

Sequence Recommender Web Application

The app/ folder contains a sequence recommender web application. Given a set of input Vega-Lite specifications, it produces a recommended sequence intended to improve chart reading and comprehension. To run this app, first you should install bower components:

$ cd app
$ bower install

Next, launch a local webserver to run the application. For example:

$ python -m SimpleHTTPServer 9000 # for Python 2
$ python -m http.server 9000 # for Python 3

To use a custom build of graphscape.js, copy your new graphscape.js file and paste it into the app/js folder.

Development Instructions

  1. MATLAB is required to solve lp.m.
  2. Install npm dependencies via npm install.
  3. You can customize rankings of edit operations by modifying lp.js and running the following commands:
$ cd src/rule
$ node lp.js
$ matlab < lp.m
$ node genEditOpSet.js # This will generate editOpSet.js.

# After creating your rankings, you must re-build `graphscape.js` to apply changes.
$ cd
$ npm run test
$ npm run build

Cite us!

If you use GraphScpae in published research, please cite this paper.

graphscape's People

Contributors

yhoonkim avatar jheer avatar

Watchers

James Cloos avatar Rado Raykov avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.