This project processes AMTI force plate data, calculates Center of Pressure (CoP) characteristics, and generates various charts and databases. The data is processed from raw .txt files and results are saved in .xls format, with outputs provided on three worksheets.
- Center of Pressure (CoP) calculation from AMTI force plate data.
- Chart generation for CoP movement and other metrics.
- Data export to Excel with results on multiple worksheets.
-
environment.yml: Conda environment configuration. -
Charts: Output folder for visualizations. -
Data: Directory containing input.txtfiles from AMTI force plate. Its divided into two experiments, COP_Data consisting of 3 subject groups measurements, and LOS experiment. -
Database: Output directory for databases generated. -
01_COP_Data_Analysis.ipynb: Python worksheet for processing force plate data. -
02_Data Analysis and Visualization.ipynb: Python worksheet for data analysis and visualisation. -
03_LOS project.ipynb: Python worksheet for data analysis and visualisation for limits of stability test.
Before running this project, make sure you have Miniconda installed and follow these steps to set up the environment.
- Clone this repository, create the Conda environment and use the provided environment.yml to install the required dependencies.
conda env create -f environment.yml - Activate the environment:
conda activate forcePlate
After setting the up the environment, you're should be ready to run all analyses. You don't need to follow the order of worksheets by their numbers. They are meant to work independently. Before first usage, scroll through the file and change '/' to '\' in locations marked by comments if you're using a Windows operating system. Other than this, it should work!