Estimating the Effects of Encumbrance and Walking on Mixed Reality Interaction

Supplementary Material

Author

Tinghui Li, Eduardo Velloso, Anusha Withana, Zhanna Sarsenbayeva

Published

February 3, 2025

1 Introduction

This code contains the process, models, figures, and results that were used to analyze the effects of encumbrance and walking on movement time (see section 3.1), pointing offset (see section 3.2), error rate (see section 3.3), target acquisition throughput (see section 3.4), text entry throughput (see section 4.1), uncorrected error rate/corrected error rate (section 4.2), and words per minute (section 4.3) with Bayesian regression models. We plot the results for visual representation and report the posterior probability to further prove our model as well.

2 Library

The key libraries used for model generation and plotting, along with their respective versions, are listed below.

cat("lme4:", as.character(packageVersion("lme4")), 
    "glmmTMB:", as.character(packageVersion("glmmTMB")), 
    "brms:", as.character(packageVersion("brms")), 
    "betareg:", as.character(packageVersion("betareg")), 
    "bayestestR:", as.character(packageVersion("bayestestR")), 
    "ggplot2:", as.character(packageVersion("ggplot2")))
lme4: 1.1.35.5 glmmTMB: 1.1.10 brms: 2.22.0 betareg: 3.2.1 bayestestR: 0.15.0 ggplot2: 3.5.1

3 Target Acquisition Task

This section contains the analysis of target acquisition task performed in the paper.

This section presents the pointing offset models and the corresponding outcomes from the target acquisition task.

This section presents the error rate models and the corresponding outcomes from the target acquisition task.

4 Text Entry Task

This section contains the analysis of text entry task performed in the paper.

This section presents the text entry throughput models and the corresponding outcomes from the text entry task.

This section presents the words per minute models and the corresponding outcomes from the text entry task.