Plot PC Heatmaps and Dim Loadings for exploratory analysis
Iterate_PC_Loading_Plots(
seurat_object,
dims_plot = NULL,
file_path = NULL,
name_prefix = NULL,
file_name = "PC_Loading_Plots",
return_plots = FALSE
)
Seurat object name.
number of PCs to plot (integer). Default is all dims present in PCA.
directory file path to save file.
prefix for file name (optional).
suffix for file name. Default is "PC_Loading_Plots".
Whether to return the plot list (Default is FALSE). Must assign to environment to save plot list.
A list of plots outputted as pdf
if (FALSE) {
Iterate_PC_Loading_Plots(seurat_object = seurat, dims_plot = 25, file_path = "plots/")
}