View source: R/frontal_plane_kinematics.R
add_frontal_plane_knee_angle | R Documentation |
Positive values of LFPKA and RFPKA reflect lateral deviation of the knee (knee varus).
add_frontal_plane_knee_angle(.data, plane = "anatomical")
.data |
A tibble containing knee and ankle spatial joint center positions.
These can be created from global joint center positions using either
|
plane |
A character string specifying which plane to use for angle calculation.
Must be either |
The tibble supplied in .data
, with added columns:
LFPKA
– Left Frontal Plane Knee Angle
RFPKA
– Right Frontal Plane Knee Angle
Stone EE, Butler M, McRuer A, Gray A, Marks J, Skubic M. Evaluation of the Microsoft Kinect for screening ACL injury. Conf Proc IEEE Eng Med Biol Soc. 2013;2013:4152-5.
Ortiz A, Rosario-Canales M, Rodriguez A, Seda A, Figueroa C, Venegas-Rios HL. Reliability and concurrent validity between two-dimensional and three-dimensional evaluations of knee valgus during drop jumps. Open access journal of sports medicine. 2016;7:65-73.
Harsted S, Holsgaard-Larsen A, Hestbaek L, Boyle E, Lauridsen HH. Concurrent validity of lower extremity kinematics and jump characteristics captured in pre-school children by a markerless 3D motion capture system. Chiropr Man Therap. 2019;27:39.
# Simulated example for anatomical frontal plane
df <- data.frame(
LA_APR = c(10,5,0,-5,-10),
LK_APR = c(0,0,0,0,0),
LA_APU = c(0,0,0,0,0),
LK_APU = c(10,10,10,10,10),
RA_APR = c(20,15,10,5,0),
RK_APR = c(10,10,10,10,10),
RA_APU = c(0,0,0,0,0),
RK_APU = c(10,10,10,10,10)
)
add_frontal_plane_knee_angle(df, plane = "anatomical")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.