Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Read/write/generate a basic graph using UCINET DL format #2052

Closed
wants to merge 9 commits into from

Commits on Mar 30, 2016

  1. Read/write/generate a basic graph using UCINET DL format

    Functions and tests for UCINET DL format.
    Currently supports only 'fullmatrix' format for data.
    Temigo committed Mar 30, 2016
    Configuration menu
    Copy the full SHA
    b7974fc View commit details
    Browse the repository at this point in the history

Commits on Mar 31, 2016

  1. Clean code

    Remove print statements, shorten lines under 80 characters per line.
    Temigo committed Mar 31, 2016
    Configuration menu
    Copy the full SHA
    118d5cd View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2016

  1. Use Numpy/Networkx utils

    To parse data, use functions already existing in Numpy and Networkx
    such as genfromtxt and from_numpy_matrix.
    Temigo committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    f72b5d6 View commit details
    Browse the repository at this point in the history
  2. nodelist1 and nodelist1b format

    Add `nodelist1` and `nodelist1b` data format support.
    Also adds support for embedded labels.
    Temigo committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    9d1cf3f View commit details
    Browse the repository at this point in the history
  3. Use existing functions for generate_ucinet

    Use `to_numpy_matrix` in `generate_ucinet`
    Update tests of `generate_ucinet`
    Temigo committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    7dc643d View commit details
    Browse the repository at this point in the history
  4. Fix Python3

    Fix bugs occurring with Python3 (bytes string for genfromtxt)
    Temigo committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    31835e1 View commit details
    Browse the repository at this point in the history
  5. edgelist1 format

    Add support for `edgelist1` format
    + fixture for Numpy import
    Temigo committed Apr 2, 2016
    Configuration menu
    Copy the full SHA
    a7705a9 View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2016

  1. Fixture Nose + irregular matrices

    Fixture Nose with NumPy and fix reading irregular matrices (in genfromtxt).
    Temigo committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    d1b1ab1 View commit details
    Browse the repository at this point in the history
  2. Fix import numpy

    Temigo committed Apr 3, 2016
    Configuration menu
    Copy the full SHA
    5ed2854 View commit details
    Browse the repository at this point in the history