{matuR}

Athlete Maturation and Biobanding

Intro

Maturity profiling in young athletes is paramount for talent identification. The concept of biobanding, or grouping of athletes based on their biological development as opposed to their chronological age, has also been widely researched to enable comparison of physical attributes across young athletes as well as better adjustment of the training and competition demands athletes are exposed to.

The goal of this repository is to showcase {matuR}, a package that provides a simple framework for professionals working with young athletes to calculate and visualize common maturation metrics using not invasive methods. The two methods implemented are:

Prediction of age at Peak Height Velocity (PHV): This method is based on research from Mirlwald et al and uses the following parameters:

Predicted Adult Height (PAH): This is based on the Khamis-Roche method and uses the following parameters:

For further details about these two methods, their protocols and calculations see the reference section at the bottom of this page.

Installation

Install from CRAN**

{matuR} has not been submitted to CRAN yet. Please use the development version.

Install the development version from GitHub**

install.packages("devtools")
devtools::install_github("josedv82/matuR")

Data

User Data

Use this template for data collection. Ensure that all fields have information. Some fields require a double measurement to calculate the average.

{matuR} runs both (age @ PHV and Khamis-Roche) methods together on the same dataset.

Data Template

Demo Data

{matuR} comes with a sample dataset for users to familiarize with the package.

library(matuR)

data_sample

Usage

Data Frames:

The two main functions within the package are maturation_cm() and maturation_in(). Both functions perform the same calculations and return the same data. Users can choose one or the other one depending on which units they wish to explore the results. The function takes the raw data from the template and performs the Khamis-Roche and Mirwarld calculations returning a dataframe that users can manipulate for further analysis.

library(matuR)

maturation_cm(data_sample)

Plots

{matuR} provides a few plotting options:

Predicted Adult Height Plot (note the two options depending on cms or inches)

plot_predicted_height_cm(data_sample)
plot_predicted_height_in(data_sample)

Time to PHV Dumbell Plot

plot_time_phv(data_sample)

Maturity Offset Plot

plot_maturity_offset(data_sample)

Plot the current and predicted height for one athlete against normal growth curves. The same function is available for females.

plot_growth_male(data_sample, "Athlete 08")
plot_growth_female(data_sample, "Athlete 18")

Plot % of Adult Height highlighted by Maturity Stages

plot_puberty_stages(data_sample)

Considerations

It is beyond the scope of this package to discuss some of the pros and cons of using these methods. However, users should be aware of aspects regarding validity and reliability to better interpret results. Likewise, these methods have been validated in very specific populations, therefore professionals using it with athletes from different countries and ethnicities should be cautious when interpreting results.

Finally, please ensure accuracy of the athlete’s height, weight, sitting height and their parent’s height for better results.

Acknowledgement

I’d like to thank Jorge Arede for his contribution and valuable feedback.

References

The methods behind the calculations implemented as part of the functions in this package rely heavily on the following research:

Cite

citation("matuR")

To cite package ‘matuR’ in publications use:

  Jose Fernandez (2020). matuR: Athlete Maturation and Biobanding. R package version 0.0.0.9000.
  https://github.com/josedv82/matuR

A BibTeX entry for LaTeX users is

  @Manual{,
    title = {matuR: Athlete Maturation and Biobanding},
    author = {Jose Fernandez},
    year = {2020},
    note = {R package version 0.0.0.9000},
    url = {https://github.com/josedv82/matuR},
  }