Giter VIP home page Giter VIP logo

lsdm-graph-tools's Introduction

Overview

Features:

  • parse graph from file
  • create/export/import (pruned) landmark labels
  • calculate shortest paths between vertices
  • create/export/import triangle counts
  • calculate clustering coefficients of vertices

Tested with Python 2.7 and 3.4.

Usage

usage: main.py [-h] [--pattern PATTERN] [--split PATTERN] [--indexfile FILE]
               [--saveindex FILE] [--noprune] [-sp V1 V2] [--triafile FILE]
               [--savetrias FILE] [-cc V]
               INPUT_FILE

positional arguments:
  INPUT_FILE         the file that contains the graph

optional arguments:
  -h, --help         show this help message and exit
  --pattern PATTERN  specify a pattern to use when parsing the input file
                     (default: \d+\t\d+)
  --split PATTERN    specify a pattern to use when splitting the lines of the
                     input file (default: \t)
  --indexfile FILE   import labeled landmarks from JSON file
  --saveindex FILE   dump the labeled landmarks into a JSON file
  --noprune          use naiive landmark labeling (no pruning)
  -sp V1 V2          calculate the shortest path between vertices V1 and V2
  --triafile FILE    import triangle counts from JSON file
  --savetrias FILE   dump the triangle counts into a JSON file
  -cc V              calculate the clustering coefficient of vertex V

Examples

  • calculate the shortest path between two vertices (1) <--> (2), creating landmark labels on-the-fly:
./main.py mygraph.txt -sp 1 2
  • create landmark labels and dump them into a file:
./main.py mygraph.txt --saveindex myindex.json
  • import the landmark labels from a file and calculate the shortest paths between vertices (1) <--> (2) and (3) <--> (4):
./main.py mygraph.txt --indexfile myindex.json -sp 1 2 -sp 3 4
  • calculate the clustering coefficients of vertices (1) and (2), counting triangles on-the-fly:
./main.py mygraph.txt -cc 1 -cc 2
  • count triangles and dump the counts into a file:
./main.py mygraph.txt --savetrias mytriangles.json
  • import the triangle counts from a file and calculate the clustering coefficient of vertex (1):
./main.py mygraph.txt --triafile mytriangles.json -cc 1

lsdm-graph-tools's People

Contributors

mrjleo avatar

Watchers

 avatar  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.