npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

glo

v2.0.0

Published

Graph-Level Operations

Downloads

34

Readme

GLO (Graph-Level Operations)

by Charles D. (Chad) Stolper, Minsuk (Brian) Kahng, Zhiyuan (Jerry) Lin, Florian Foerster, Aakash Goel, John Stasko, and Duen Horng (Polo) Chau at Georgia Tech

What are GLOs?

Software Requirements

  • You only need a modern web browser, such as Google Chrome or Firefox.

How to run the prototype

  • clone the repository

  • On a command line:

    • cd to the glo root folder

    • Install dependencies bower install (If necessary, install bower first: https://bower.io/)

    • Start a webserver

    Using python 2:

    python -m SimpleHTTPServer 8000 
    (8000 will be your port number. You can use any.)

    Using python 3: python -m http.server 8000

  • Open Chrome, then connect to the following URL (where 8000 is the port number you chose):

http://localhost:8000/gui.html

How to play with the prototype

  • Choose a operation from the left pane Select GLOs and drag it to the next pane Applied GLOs.
  • You will see the main view changed.
  • The bottom pane shows the history of graphs.
  • For more information, see our papers in the publications section below or check out our YouTube video: https://www.youtube.com/watch?v=a7ZkZRU6VBM

How to apply your graph data

  • Create a directory in the directory data/

  • Place two csv files into the directory you just created.

    • nodes.csv: a list of nodes with some attributes. It should include the following 3 columns:
      • id: unique identifier (integer starting with 0)
      • label: name of each node
      • modularity_class: main category (group) for nodes (integer starting with 0)
      • (optional) degree: degree of nodes
      • (optional) betweenness_centrality: betweenness centrality values of nodes
    • edges.csv: a list of edges (edges list format). It should contain 5 columns:
      • source: source node's ID
      • target: target node's ID
      • type: Undirected or Directed
      • id: unique identifier for edges
      • weight: weights for edges
  • Replace the line 14 of the file v1/les_mis_demo.js by

var source = “YOUR_DIRECTORY_NAME”

Notes

  • Due to SVG rendering limitations, we recommend to graphs only up to 500 nodes.
  • It only supports pre-defined attributes. Our current prototype does not automatically detect attributes from data.

Publications

  • GLO-STIX: Graph-Level Operations for Specifying Techniques and Interactive eXploration by Charles D. Stolper, Minsuk (Brian) Kahng, Zhiyuan (Jerry) Lin, Florian Foerster, Aakash Goel, John Stasko, and Duen Horng (Polo) Chau. IEEE Transactions on Visualization and Computer Graphics, 2014.
  • GLOs: Graph-Level Operations for Exploratory Network Visualization by Charles D. Stolper, Florian Foerster, Minsuk Kahng, Zhiyuan Lin, Aakash Goel, John Stasko, and Duen Horng (Polo) Chau. In Proceedings of the 32nd ACM SIGCHI Conference on Human Factors in Computing Systems (CHI 2014 Extended Abstracts), pp. 1375-1380. ACM, 2014.