Skip to main content

Regularized methods for efficient ranking in networks

Project description

rSpringRank

license

rSpringRank implements a collection of regularized, convex models (+solvers) that allow the inference of hierarchical structure in a directed network, which exists due to dominance, social status, or prestige. Specifically, this work leverages the time-varying structure and/or the node metadata present in the data set.

This is the software repository behind the paper:

  • Tzu-Chi Yen and Stephen Becker, Regularized methods for efficient ranking in networks, in preparation.

  • For full documentation, please visit this site.

  • For general Q&A, ideas, or other things, please visit Discussions.

  • For software-related bugs, issues, or suggestions, please use Issues.

Installation

rSpringRank is available on PyPi:

pip install rSpringRank

The dependencies needed to use graph-tool-based input are not installed by default. You will need to install:

First steps

In your Python console, rSpringRank is invoked using:

>>> from reg_sr import rSpringRank, PhDExchange
>>> pde = PhDExchange()
>>> g = pde.get_data(goi="c18basic")
>>> rsp = rSpringRank(method="annotated")
>>> result = rsp.fit(g, alpha=1, lambd=1, printEvery=0)  # actual computation; takes ~5 seconds
>>> pde.compute_basic_stats(rsp.sslc, primal_s=result["primal"])
>>> pde.print_sorted_mean(5, precision=3)  # output the higher mean SpringRank categories
Group: 15; Mean: 0.171
Group: na; Mean: -0.043
Group: 22; Mean: -0.043
Group: 18; Mean: -0.043
Group: 21; Mean: -0.043

As you noticed, most groups have the same mean SpringRank. This is the regularizer in effect. To plot the distribution, do this.

>>> pde.plot_hist(bin_count=20, legend=True)

A histogram of ranks stratified by C18 category

Development

TODO.

Related links

TODO.

Acknowledgement

TODO.

License

rSpringRank is open-source and licensed under the GNU Lesser General Public License v3.0.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rSpringRank-0.0.1.tar.gz (1.8 MB view hashes)

Uploaded Source

Built Distribution

rSpringRank-0.0.1-py3-none-any.whl (40.2 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page