Skip to main content

Heterogenous Interaction Network Analysis in Python

Project description

HINA: A Learning Analytics Tool for Heterogeneous Interaction Network Analysis in Python

HINA is a learning analytics tool that models and analyzes heterogeneous interactions in learning processes. Heterogeneous interactions refer to the interactions occurring between different types of entities during learning processes, such as students’ interactions with learning objects or students’ display of different behaviors coded using multimodal process data.

Heterogeneous interaction networks (HINs) consist of different sets of nodes and edges connecting nodes from different sets. Each node in a heterogeneous interaction network (HIN) can represent any meaningful entity reflecting a certain object or construct in a learning process, such as a student, group of students, coded behavior, or learning artefact. Edges in HINs pair nodes from different sets and can reflect affiliations, associations, or interactions among the nodes for modeling a specific learning process.

Heterogeneous interaction network analysis (HINA) offers a flexible, adaptive, and widely applicable method to model a wide variety of interactions that can occur during the learning processes, across individual learning, group learning, and community learning.

To access the HINA Web Tool. No programming required to use the web interface.

Examples of heterogenous interaction networks for learning in HINA.

Table of Contents

Installation

HINA is available on PyPI and can be installed using pip, which will include the dependencies automatically:

To ensure running in a working environment please make sure the python version >=3.9

pip install hina

For users who prefer installing dependencies manually, we provide a requirements.txt file on GitHub. To install HINA and its dependencies using this file:

git clone https://github.com/SHF-NAILResearchGroup/HINA.git
cd HINA
pip install -e .
pip install -r requirements.txt

HINA Dashboard APP is available to build and run locally with Docker:

git clone https://github.com/SHF-NAILResearchGroup/HINA.git
cd HINA
docker compose up --build

Then, open the web browser and navigate to http://localhost:8080 to access the HINA Dashboard.

Modules

hina.construction

  • Heterogeneous Interaction Network Construction: Provides functions to construct Heterogeneous Interaction Networks (HINs) (see examples above) directly from input learning process data. The methods in this module are designed to handle the typical data format encountered for learning process data traces, supporting seamless integration with learning analytics workflows.

hina.individual

  • Individual-level Analysis: Provides functions to compute the node-level measures gauging the quantity and diversity of individuals’ connections to different learning constructs. Students’ group information and construct attributes can be flexibly manipulated for different applications.

hina.dyad

  • Dyadic Analysis: Provides methods to identify statistically significant edges in the heterogeneous interaction network relative to different null models of interaction structure, which can be specified by the user.

hina.mesoscale

  • Mesoscale Clustering: Provides methods for clustering nodes in a heterogeneous interaction network according to shared interaction structure, to automatically learn the number of clusters from heterogeneity in the interaction data to find a mesoscale representation. Utilizes a novel method based on data compression for parsimonious inference. If the input is a tripartite representation of a heterogeneous interaction network, the function also returns the projected bipartite networks of the related constructs of individuals within each cluster.

hina.visualization

  • Visualization: Provides network visualization functionalities for heterogeneous interaction networks. Users can generate a customizable network visualization using a specified layout, allowing for the pruning of insignificant edges, grouping of nodes based on engagement patterns, and customization of the graph's appearance. Users can visualize HINs with a novel community-based layout, emphasizing the underlying bipartite community structure. Users can also visualize a projected one-mode network based on the defined nodeset in a constructed HIN.

hina.app

  • HINA Dashboard: Provides functions to deploy a dashboard that includes a web-based interface for data analysis and visualization.

    1. The dashboard serves as a web-based tool for conducting learning analytics with HINA using an intuitive user interface, enabling users to conduct the individual-, dyadic- and mesoscale-level analysis available in the package without any programming.
    2. The dashboard also allows teachers and students to visualize, interpret, and communicate HINA results effectively.

    This dual functionality supports both data analysis and the sharing of actionable insights in an interactive and user-friendly manner, making it a versatile tool for both data analytics and teaching practice.

Documentation

Detailed documentation for each module and function is available at the link below:

HINA Documentation

License

Distributed under the MIT License. See LICENSE for more information.

Reference

When using the package, please cite: Feng et al., (2025). HINA: A Learning Analytics Tool for Heterogenous Interaction Network Analysis in Python. Journal of Open Source Software, 10(111), 8299, https://doi.org/10.21105/joss.08299

Acknolwedgement

This work was funded by Research Grants Council (Hong Kong) under Early Career Scheme (Grant/Award Number: #27605223) and the Institute of Data Science under Research Seed Fund at the University of Hong Kong.

Layout

HINA/
├── __init__.py
│
├── construction/                    # Construct bipartite & tripartite networks   ├── __init__.py
│   ├── network_construct.py
│   └── tests/
│       ├── __init__.py
│       └── test_network_construct.py
├── individual/                      # Node-level analysis: quantity & diversity   ├── __init__.py
│   ├── quantity.py
│   ├── diversity.py
│   └── tests/
│       ├── __init__.py
│       └── test_quantity.py
│       └── test_diversity.py
│
├── dyad/                            # Edge-level analysis: significant edges   ├── __init__.py
│   ├── significant_edges.py
│   └── tests/
│       ├── __init__.py
│       └── test_significant_edges.py
│
├── mesoscale/                       # Mesoscale clustering analysis   ├── __init__.py
│   ├── clustering.py
│   └── tests/
│       ├── __init__.py
│       └── test_clustering.py
│
├── visualization/                   # Network visualization utilities   ├── __init__.py
│   ├── network_visualization.py
│   └── tests/
│       ├── __init__.py
│       └── test_network_visualization.py
│
├── app/                              # Web-based API & frontend   ├── __init__.py
│   ├── api/                          # Backend API logic      ├── __init__.py
│      ├── api.py
│      ├── utils.py
│   │
│   ├── tests/                        # API unit tests      ├── __init__.py
│      └── test_api.py
│   │
│   ├── frontend/                     # APP Development (React/TypeScript)       ├── src/
│           ├── components/
│              ├── CanvasBackground/
│                 ├── NetworkBackground.tsx
│                 ├── UploadOverlay.tsx
│              ├── Navbar/
│                 ├── NavbarMinimalColored.tsx
│              ├── AnalysisPanel/
│                 ├── AnalysisPanel.tsx
│              ├── DataInputPanel/
│                 ├── DataInputPanel.tsx
│              ├── NetworkVisualization/
│                 ├── NetworkVisualization.tsx
│              ├── Webinterface/
│                 ├── Webinterface.tsx
│                     ├── hooks
│                         ├── useNetworkData.tsx
│           │
│           ├── pages/
│              ├── Homepage.tsx
│           │
│           ├── App.tsx
│           ├── main.tsx
│           ├── Router.tsx
│
├── utils/                            # Utility functions for graph & plotting   ├── __init__.py
│   ├── graph_tools.py
│   ├── plot_tools.py
│   └── tests/
│       ├── __init__.py
│       ├── test_graph_tools.py
│       └── test_plot_tools.py
│
├── data/                             # Sample datasets   ├── __init__.py
│   ├── synthetic_data.csv
│   └── example_dataset.xlsx

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

hina-0.7.1.tar.gz (27.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hina-0.7.1-py3-none-any.whl (29.1 kB view details)

Uploaded Python 3

File details

Details for the file hina-0.7.1.tar.gz.

File metadata

  • Download URL: hina-0.7.1.tar.gz
  • Upload date:
  • Size: 27.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for hina-0.7.1.tar.gz
Algorithm Hash digest
SHA256 887bc20436afe120396d7bb40b90c7f5847c51953aaed6f38708c2606d00737e
MD5 677880803330e7ff92e2ce019c020f1b
BLAKE2b-256 8275ea9cf5adeace814d8909c36e384a8888c9f2a5b69e6945fabeabc2cfc444

See more details on using hashes here.

File details

Details for the file hina-0.7.1-py3-none-any.whl.

File metadata

  • Download URL: hina-0.7.1-py3-none-any.whl
  • Upload date:
  • Size: 29.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.9.25

File hashes

Hashes for hina-0.7.1-py3-none-any.whl
Algorithm Hash digest
SHA256 cbbbb4ad95e1dafeaec3a62a70aec159eee39bd7c1e9bff4e13161b4f7d75816
MD5 5b51fedde8d8babe8c60cd217f815e60
BLAKE2b-256 34e5a93353e05a11be46f031e2bcb2b61fdb57dd113e4ce32acd5dc5e0d094d3

See more details on using hashes here.

Supported by

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