This function provides a summary by correlation coefficient of the relationship between clinical features and lipid species or characteristics, indicating its strength and whether it is positive or negative.
Usage
corr_cor_heatmap(
processed_se,
char = NULL,
condition_col,
side_color_char = NULL,
correlation = c("pearson", "kendall", "spearman"),
significant = c("padj", "pval"),
p_cutoff = 1,
adjust_p_method = c("holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr",
"none"),
cor_coef_cutoff = 0,
distfun = c("pearson", "spearman", "kendall"),
hclustfun = c("ward.D", "ward.D2", "single", "complete", "average", "mcquitty",
"median", "centroid"),
heatmap_col = c("cor_coef", "statistic"),
transform = c("none", "log10", "square", "cube"),
type = c("Sp", "Char")
)
Arguments
- processed_se
A SummarizedExperiment object constructed by
as_summarized_experiment
and processed bydata_process
.- char
Character. A lipid characteristic selected from the common list returned by
list_lipid_char
.- condition_col
Character.The column names used to extract the condition table from the group information table, including clinical conditions such as disease status or gene dependency scores.
- side_color_char
Character. A lipid characteristic used for plotting the side color of heatmap. It must be selected from the common list returned by
list_lipid_char
.- correlation
Character. The method for computing correlation coefficient. Allowed methods include "pearson", "kendall", and "spearman". Default is
'pearson'
.- significant
Character. The p-value to be used for the statistically significant. Must be one of "pval" or "padj". Default is
'pval'
.- p_cutoff
Numeric. Significant level. Default is
1
.- adjust_p_method
Character. The correction method of p-value. Allowed methods include "holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", and "none". Default is
'BH'
.- cor_coef_cutoff
Numeric. Significance of the correlation coefficient. Default is
0
.- distfun
Character. The distance measure for computing correlation coefficient (or covariance). Allowed methods include "pearson", "kendall", "spearman". Default is
'spearman'
.- hclustfun
Character. The agglomeration method. This should be (an unambiguous abbreviation of) one of "ward.D", "ward.D2", "single", "complete", "average" (= UPGMA), "mcquitty" (= WPGMA), "median" (= WPGMC) or "centroid" (= UPGMC). Default is
'average'
.- heatmap_col
Character. The value for clustering. Allow method are "cor_coef" and "statistic". Default is
'statistic'
.- transform
Character. Method for data transformation. Allowed methods include "none", "log10", "square", "cube". Select 'none' to skip data transformation. Default is
'log10'
.- type
Character. Specifies the correlation type: 'Sp' for lipid species correlation and 'Char' for lipid characteristic correlation.
Examples
data("corr_data")
processed_se <- data_process(
corr_data, exclude_missing=TRUE, exclude_missing_pct=70, replace_na_method='min',
replace_na_method_ref=0.5, normalization='Percentage', transform='log10')
result <- corr_cor_heatmap(processed_se, char=NULL,
condition_col=c("FEV1_FVC", "Emphysema", "Exacerbations"),
side_color_char=NULL, correlation='pearson', significant='pval',
p_cutoff=1, adjust_p_method='BH', cor_coef_cutoff=0, distfun='spearman',
hclustfun='average', heatmap_col='statistic', transform='log10', type='Sp')