Skip to main content

HierarchiaPy: statistical package to derive hiearchy from social interactions

Project description

Build Status LICENCE codecov Documentation Status PyPI version


Introduction

HierarchiaPy is an optimized statistical package for hierarchy/dominance analysis methds. It is purely written in Python and mainly built on Pandas and NumPy. Interarction data can be parsed both from Pandas DataFrame and 2D Numpy array. The methods are implemented based on the original published papers and tests module designed to cross-check the results with the examples from the reference papers.

Dominance and hierarchy is one of the core concepts in the research field of animal social behaviour. The hierarchy (dominance) can be derived from the interactions between the individuals (dyadic relationships). There are numerous techniques to derive the dominance from such dataset. We can classify them into two categories; numerical matrix optimization for certain criteria which results in a rank order (1) and calculation of a certain dominance measure for each individual from which a rank can be computed (2).

The HierarchiaPy statistical python package aims to implement available methods from both categories, allowing the animal social scientists to derive dominance efficiently, easily and in a reproducible way.

Methods: Stable release

  1. ELO rating
  2. Randomized ELO rating
  3. David's Scores
  4. Normalized David's Scores
  5. Average Dominance Index
  6. Adagio
  7. I&SI 98
  8. Directional Consistency Index (DCI)
  9. Steepness
  10. Steepness Test
  11. Planor Network Visualization

Linearity Tests: Stable release

  1. Landau's h
  2. Improved Landau's h
  3. Kendall's K (Chi-square approximation & ECDF for n<10)
  4. Unbiased Kendall's K (permutation of unknown relationships)

Methods: Under Development

  1. I&SI 13

Quick Start

Installation

!pip install HierarchiaPy

Basic Usage

from HierarchiaPy import Hierarchia
import numpy as np

mat_hemelrijk_table_2_1 = np.array([[0, 6, 9, 8, 5],
                                    [0, 0, 4, 6, 0],
                                    [0, 2, 0, 4, 7],
                                    [1, 0, 5, 0, 3],
                                    [0, 0, 2, 3, 0]], dtype='int64')

hier_mat = Hierarchia(mat_hemelrijk_table_2_1, np.array(['a', 'b', 'c', 'd', 'e']))
davids_scores = hier_mat.davids_score()

print(davids_scores)

Output:

{'a': 8.4444, 'b': 1.6111, 'c': -2.3333, 'd': -3.6667, 'e': -4.0556}

Documentation

For full functionality and reference, see the documentation

Change Log

v 0.1.0 - Initial release
v 0.2.0 - Inclusion of linearity statistics & tests
v 0.2.1 - Hot-fix for linearity tests
v 0.2.2 - I&SI 98, performance improvement v 0.2.3 - Landau's h classic improvement v 0.2.4 - Steepness, DCI and network vizualization added

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

HierarchiaPy-0.2.4.tar.gz (39.3 kB view details)

Uploaded Source

File details

Details for the file HierarchiaPy-0.2.4.tar.gz.

File metadata

  • Download URL: HierarchiaPy-0.2.4.tar.gz
  • Upload date:
  • Size: 39.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.7.13

File hashes

Hashes for HierarchiaPy-0.2.4.tar.gz
Algorithm Hash digest
SHA256 4bf2e4def858b621c7d7863950dbae1f01bc543aa8a7582cd5c28c59b72bec11
MD5 59fb8ae34caa51a884ca2a381678afa4
BLAKE2b-256 63c65c49a513afaa5ccc7a5e4d35e836216f485b992b8e9976f00585edbca2f0

See more details on using hashes here.

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