GaitVision

COMP3888 Project: Data Analysis and Visualisation Tools

This project contains three primary applications developed for data analysis and visualisation: a standalone PCA Analysis tool, a simple PCA web app, and the full-stack GaitVision Web Application, which is deployed here.

Each application is contained within its own directory and includes a detailed README.md file with specific setup instructions. For comprehensive documentation, including running instructions, have a read of the docs.

To download the source files for this project, go to the repo, click the green Code button, and click Download ZIP. Make sure to unzip the folder afterwards!


Applications Overview

1. PCA Analysis Tool (/PCA)

This is a standalone desktop application for performing Principal Component Analysis (PCA) on CSV datasets. It is intended for users who need to run a quick, in-depth statistical analysis locally. This is a prototype tool and is not designed or supported for much longer.

2. PCA Small Web App (/PCA Small Web App)

This is a lightweight, local web application that performs the same PCA algorithm on an uploaded CSV file and downloads the required PCA report. Notably, it is much faster than the PCA executable tool and can perform the same analysis much faster than the original PCA tool.

3. GaitVision Web Application (/GaitVision)

GaitVision is a comprehensive, full-stack web application that provides a rich, interactive interface for analysing and visualising gait analysis data. It is designed to help clinicians and researchers compare a patient’s metrics against a normalised baseline population.


File format overview

In the root directory of this repository is a small CSV file called FileFormat.csv. This format provides the required file format for all three applications. Of particular imporance:

An example of the calibration file

Participant ID Timepoint (baseline/Postinjury) Walk Task Condition (ST/HT/DT) Athlete Intensity Average Duty Factor Average Flight Duration Add variables as needed
      g/s ratio g/s unit
1 Baseline ST 191 1 158
1 Baseline HT 76 65 91
1 Baseline DT 170 62 115
1 PI-1 ST 30 153 163
1 PI-1 HT 92 63 98
1 PI-1 DT 170 73 100
1 PI-2 ST 126 125 184
1 PI-2 HT 80 182 8
1 PI-2 DT 44 143 39
1 PI-3 ST 108 159 147
1 PI-3 HT 113 19 73
1 PI-3 DT 200 74 159
Next patient ID

An example of the patient file

Participant ID Timepoint (baseline/Postinjury) Walk Task Condition (ST/HT/DT) Athlete Intensity Average Duty Factor Average Flight Duration Add variables as needed
      g/s ratio g/s unit
1 Baseline ST 191 1 80
1 Baseline HT 76 65 92
1 Baseline DT 170 62 163
1 PI-1 ST 30 153 92
1 PI-1 HT 92 63 25
1 PI-1 DT 170 73 183
1 PI-2 ST 126 125 7
1 PI-2 HT 80 182 55
1 PI-2 DT 44 143 179
1 PI-3 ST 108 159 123
1 PI-3 HT 113 19 20
1 PI-3 DT 200 74 152