netin


Namenetin JSON
Version 1.0.5.9 PyPI version JSON
download
home_pagehttps://github.com/CSHVienna/NetworkInequalities
SummaryPython package to study inequalities in social networks
upload_time2023-04-26 21:46:40
maintainerNetIn Developers
docs_urlNone
authorLisette Espín-Noboa
requires_python>=3.9
license
keywords networks inequalities social networks ranking inferencegraph theory mathematics network undirected discrete mathematics math
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            NetIn
========

.. image:: https://github.com/CSHVienna/NetworkInequalities/blob/main/docs/source/netin-logo.png?raw=true
    :width: 100
    :alt: NetworkInequality

NetIn is a python package for network inference.
It is based on the NetworkX package and provides a set of methods to study network inequalities.
The package is currently under development and will be updated regularly.

.. image:: https://github.com/CSHVienna/NetworkInequalities/actions/workflows/python-app.yml/badge.svg
  :target: https://github.com/CSHVienna/NetworkInequalities/actions/workflows/python-app.yml

.. image:: https://img.shields.io/badge/python-3.9-blue.svg
  :target: https://www.python.org/downloads/release/python-3916/

.. image:: https://img.shields.io/badge/NetworkX-3.1-blue.svg
    :target: https://networkx.org/

.. image:: https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg
    :target: https://creativecommons.org/licenses/by-nc-sa/4.0/

- **Website:** https://www.networkinequality.com
- **Documentation:** https://cshvienna.github.io/NetworkInequalities
- **Source:** https://github.com/CSHVienna/NetworkInequalities
- **Bug reports:** https://github.com/CSHVienna/NetworkInequalities/issues
- **GitHub Discussions:** https://github.com/CSHVienna/NetworkInequalities/discussions
- **Mailing list:** https://groups.google.com/forum/#!forum/netin-dev

Simple examples
---------------

Create an undirected network with preferential attachment and homophily.

.. code:: pycon

    >>> from netin import PAH
    >>> G = PAH(n=200, k=2, f_m=0.2, h_MM=0.1, h_mm=0.9, seed=42)
    >>> G.generate()
    >>> G.info()


Create a directed network with preferential attachment and homophily.

.. code:: pycon

    >>> from netin import DPAH
    >>> G = DPAH(n=200, f_m=0.2, d=0.02, h_MM=0.1, h_mm=0.6, plo_M=2.0, plo_m=2.0, seed=42)
    >>> G.generate()
    >>> G.info()

Install
-------

Install the latest version of NetIn::

    $ pip install netin


Install from source::

        $ git clone
        $ cd NetworkInequalities
        $ pip install -e .


Bugs
----

Please report any bugs that you find `here <https://github.com/CSHVienna/NetworkInequalities/issues>`_.
Or, even better, fork the repository on `GitHub <https://github.com/CSHVienna/NetworkInequalities>`_
and create a pull request (PR). We welcome all changes, big or small, and we
will help you make the PR if you are new to `git`.

License
-------

Released under Creative Commons by-nc-sa 4.0 (see `LICENSE`)::

   Copyright (C) 2023-2024 NetIn Developers
   Fariba Karimi <karimi@csh.ac.at>
   Lisette Espin-Noboa <espin@csh.ac.at>
   Jan Bachmann <bachmann@csh.ac.at>


            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/CSHVienna/NetworkInequalities",
    "name": "netin",
    "maintainer": "NetIn Developers",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "netin-dev@googlegroups.com",
    "keywords": "Networks,Inequalities,Social Networks,Ranking,InferenceGraph Theory,Mathematics,network,undirected,discrete mathematics,math",
    "author": "Lisette Esp\u00edn-Noboa",
    "author_email": "espin@csh.ac.at",
    "download_url": "https://files.pythonhosted.org/packages/16/44/40708bc254498ec609882643337cd29c4b3147c8b4a2930b0bcabaa89323/netin-1.0.5.9.tar.gz",
    "platform": "Linux",
    "description": "NetIn\n========\n\n.. image:: https://github.com/CSHVienna/NetworkInequalities/blob/main/docs/source/netin-logo.png?raw=true\n    :width: 100\n    :alt: NetworkInequality\n\nNetIn is a python package for network inference.\nIt is based on the NetworkX package and provides a set of methods to study network inequalities.\nThe package is currently under development and will be updated regularly.\n\n.. image:: https://github.com/CSHVienna/NetworkInequalities/actions/workflows/python-app.yml/badge.svg\n  :target: https://github.com/CSHVienna/NetworkInequalities/actions/workflows/python-app.yml\n\n.. image:: https://img.shields.io/badge/python-3.9-blue.svg\n  :target: https://www.python.org/downloads/release/python-3916/\n\n.. image:: https://img.shields.io/badge/NetworkX-3.1-blue.svg\n    :target: https://networkx.org/\n\n.. image:: https://img.shields.io/badge/License-CC%20BY--NC--SA%204.0-lightgrey.svg\n    :target: https://creativecommons.org/licenses/by-nc-sa/4.0/\n\n- **Website:** https://www.networkinequality.com\n- **Documentation:** https://cshvienna.github.io/NetworkInequalities\n- **Source:** https://github.com/CSHVienna/NetworkInequalities\n- **Bug reports:** https://github.com/CSHVienna/NetworkInequalities/issues\n- **GitHub Discussions:** https://github.com/CSHVienna/NetworkInequalities/discussions\n- **Mailing list:** https://groups.google.com/forum/#!forum/netin-dev\n\nSimple examples\n---------------\n\nCreate an undirected network with preferential attachment and homophily.\n\n.. code:: pycon\n\n    >>> from netin import PAH\n    >>> G = PAH(n=200, k=2, f_m=0.2, h_MM=0.1, h_mm=0.9, seed=42)\n    >>> G.generate()\n    >>> G.info()\n\n\nCreate a directed network with preferential attachment and homophily.\n\n.. code:: pycon\n\n    >>> from netin import DPAH\n    >>> G = DPAH(n=200, f_m=0.2, d=0.02, h_MM=0.1, h_mm=0.6, plo_M=2.0, plo_m=2.0, seed=42)\n    >>> G.generate()\n    >>> G.info()\n\nInstall\n-------\n\nInstall the latest version of NetIn::\n\n    $ pip install netin\n\n\nInstall from source::\n\n        $ git clone\n        $ cd NetworkInequalities\n        $ pip install -e .\n\n\nBugs\n----\n\nPlease report any bugs that you find `here <https://github.com/CSHVienna/NetworkInequalities/issues>`_.\nOr, even better, fork the repository on `GitHub <https://github.com/CSHVienna/NetworkInequalities>`_\nand create a pull request (PR). We welcome all changes, big or small, and we\nwill help you make the PR if you are new to `git`.\n\nLicense\n-------\n\nReleased under Creative Commons by-nc-sa 4.0 (see `LICENSE`)::\n\n   Copyright (C) 2023-2024 NetIn Developers\n   Fariba Karimi <karimi@csh.ac.at>\n   Lisette Espin-Noboa <espin@csh.ac.at>\n   Jan Bachmann <bachmann@csh.ac.at>\n\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Python package to study inequalities in social networks",
    "version": "1.0.5.9",
    "split_keywords": [
        "networks",
        "inequalities",
        "social networks",
        "ranking",
        "inferencegraph theory",
        "mathematics",
        "network",
        "undirected",
        "discrete mathematics",
        "math"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "d94dd06fc3d9ff082033140e751da57b447c6e1021d54dfa92fb39d98382e288",
                "md5": "5f5b6a8cd4359d2341b035321a9b8422",
                "sha256": "15758cce6f1927340eab6c4e1796e1fe8273c1504fbab67cefc923a9325aa1c2"
            },
            "downloads": -1,
            "filename": "netin-1.0.5.9-py3.9.egg",
            "has_sig": false,
            "md5_digest": "5f5b6a8cd4359d2341b035321a9b8422",
            "packagetype": "bdist_egg",
            "python_version": "1.0.5.9",
            "requires_python": ">=3.9",
            "size": 149445,
            "upload_time": "2023-04-26T21:46:37",
            "upload_time_iso_8601": "2023-04-26T21:46:37.927470Z",
            "url": "https://files.pythonhosted.org/packages/d9/4d/d06fc3d9ff082033140e751da57b447c6e1021d54dfa92fb39d98382e288/netin-1.0.5.9-py3.9.egg",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "164440708bc254498ec609882643337cd29c4b3147c8b4a2930b0bcabaa89323",
                "md5": "85f075bfec9607a11d50e67602a72786",
                "sha256": "bfe0f2fdfd2f6b37ab7664e56c275a9335bd3ccd3a459af91597e928978c3c58"
            },
            "downloads": -1,
            "filename": "netin-1.0.5.9.tar.gz",
            "has_sig": false,
            "md5_digest": "85f075bfec9607a11d50e67602a72786",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 49501,
            "upload_time": "2023-04-26T21:46:40",
            "upload_time_iso_8601": "2023-04-26T21:46:40.070167Z",
            "url": "https://files.pythonhosted.org/packages/16/44/40708bc254498ec609882643337cd29c4b3147c8b4a2930b0bcabaa89323/netin-1.0.5.9.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-26 21:46:40",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "CSHVienna",
    "github_project": "NetworkInequalities",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "netin"
}
        
Elapsed time: 0.05819s