delta_heatmap() is designed to take an \(n \times p \times t\) array
and display a heatmap to visualize the observed delta-scalecorrelation
matrix. This delta-scale correlation matrix is used in the prolong model as
the adjacency matrix for the graph whose laplacian is used in the (group)
lasso + laplacian penalty used.
Usage
delta_heatmap(
x,
timediff = "2-1",
object = NULL,
selected = NULL,
interactive = TRUE,
grayscale = FALSE
)Arguments
- x
Input covariate array, with n rows, p columns, and t slices
- timediff
Pair of time points to use in heatmap. Should be in format
't2-t1'- object
A
prolongmodel object. Can be leftNULLifselectedis provided or if all variables are to be used- selected
A character list of variable names or a numeric index of variables of interest to be included in the heatmap Can be left
NULLif object is provided or if all variables are to be used- interactive
If
TRUE, a shiny app will open in browser that will display an interactive version of the heatmap where sub-heatmaps can be selected for display- grayscale
If
TRUEthe viridis colors will be desaturated to grayscale
References
Gu Z (2022). “Complex Heatmap Visualization.” iMeta. doi:10.1002/imt2.43 . Gu Z, Huebschmann D (2021). “Make Interactive Complex Heatmaps in R.” Bioinformatics. doi:10.1093/bioinformatics/btab806 .
