SOCR ≫ | DSPA ≫ | DSPA2 Topics ≫ |
Use Principal Component Analysis (PCA), Singular Value Decomposition (SVD), Independent component analysis(ICA), Factor analysis (FA) to reduce the dimensionality of the PD data. Interpret each of the results.
Load Allometric Relations in Plants data and perform proper type conversion, e.g., convert “Province” and “Born”.
factoextra
and compare it to the results of prcomp
require(nFactors)
to determine the number of the factors and show a scree plot as stated in notes;factanal()
to apply FA and compare the rotation “varimax” and “promax”Use the 3D Brain Tumor Segmentation (BraTS) image dataset. Split it into training and testing sets. The complete brain MR dataset contains \(257\) 3D volumes of dimensions \(240(x)\times 240(y)\times 155(z)\). For each case, there is a categorical (phenotypic) label and there are four different imaging modalities including T1 (T1-weighted), T1C (contrast enhanced T1-weighted), T2 (T2-weighted), and FLAIR (Fluid Attenuation Inversion Recovery). Read this recent pub: DOI:10.1016/j.bspc.2021.102458.
Consider each voxel (3D generalization of a pixel) in the 3D brain volume as a feature. Use both t-SNE and UMAP to reduce the high-dimensional data (\(240*240*155=8,928,000\)) to 2D or 3D. Color-code the lower dimensional projections by the categorical labels associated with disease (clinical phenotypes). Is there clearly identifiable patterns suggestions discrimination between clinical class labels? Compare your findings against the SCOR PCA/t-SNE/UMAP interactive webapp using the default UKBB dataset.