Learn R Programming

Anthropometry (version 1.7)

array3Dlandm: Helper function for the 3D landmarks

Description

This is a helper function for obtaining the array with the 3D landmarks of the sample objects

Usage

array3Dlandm(numLandm,numIndiv,matLandm)

Arguments

numLandm
Number of landmarks that represent the 3D body of the individuals.
numIndiv
Number of individuals to analyze.
matLandm
Matrix with the numLandm landmarks for the numIndiv individuals.

Value

Array with the 3D landmarks of the sample objects.

References

Vinue, G., Simo, A., and Alemany, S., (2014). The k-means algorithm for 3D shapes with an application to apparel design, Advances in Data Analysis and Classification, 1--30.

See Also

LloydShapes, HartiganShapes, trimmedLloydShapes

Examples

Run this code
landmarksNoNa <- na.exclude(landmarksSampleSpaSurv)
numLandmarks <- (dim(landmarksNoNa)[2]) / 3
landmarksNoNa_First50 <- landmarksNoNa[1:50, ]
numIndiv <- dim(landmarksNoNa_First50)[1]

array3D <- array3Dlandm(numLandmarks, numIndiv, landmarksNoNa_First50)

Run the code above in your browser using DataLab