Skip to content

Latest commit

 

History

History
45 lines (22 loc) · 691 Bytes

README.md

File metadata and controls

45 lines (22 loc) · 691 Bytes

RMoCap

R language package for processing and kinematic analyzing motion capture data.

In order to install package in R, run following commands:

#############

#R code

#############

if (!require("RMoCap"))

{

if (!require("devtools"))

{

	install.packages("devtools") # if you have not installed "devtools" package

}

devtools::install_github("browarsoftware/RMoCap")

}

#test package

library("RMoCap")

data("right.arm.motion.1")

plot(right.arm.motion.1, frame = 1, my.color = "white", alpha = 1, spheres = TRUE)

plot(right.arm.motion.1, frames.fraction = 0.5, my.color = "white", alpha = 1, spheres = FALSE)

#############

#end of R code

#############