mrfDepth (version 1.0.16)

mri: Intensities of MRI images

Description

Felipe et al. (2005) obtained intensities of MRI images of 9 different parts of the human body (plus a group consisting of all remaining body regions, which was of course very heterogeneous). They then transformed their data to univariate curves.

Usage

data(mri)

Arguments

Format

A list of arrays corresponding to each bodypart. For each bodypart, a three-dimensional \(t = 99\) by \(n\) by \(p = 1\) array is available. The index \(t\) corresponds to the different points of measurement, the index \(n\) to the different observations.

Details

When using this data set please cite both Felipe et al. (2005) and Hubert et al. (2017).

References

Hubert M., Rousseeuw P.J., Segaert P. (2017). Multivariate and functional classification using depth and distance. Advances in Data Analysis and Classification, 11, 445--466.

Examples

Run this code
data(mri)
par(mfrow = c(2,1))
matplot(y = mri$bodypart1[,,1],
        type = "l", col = "black", lty = 1, 
        xlab = "", ylab="", main = "bodypart 1")
matplot(y = mri$bodypart2[,,1],
        type = "l", col = "black", lty = 1, 
        xlab = "", ylab="", main = "bodypart 2")
par(mfrow = c(1,1))

Run the code above in your browser using DataLab