corr_plot {HPiP} | R Documentation |
A graphical display of a correlation matrix.
corr_plot(cormat, method = "number", cex = 0.9)
cormat |
A correlation matrix. |
method |
The visualization method of correlation matrix;
defaults to number.
See |
cex |
The size of x/y axis label. |
corr_plot
A correlation plot.
Matineh Rahmatbakhsh, matinerb.94@gmail.com.
data('example_data') x <- na.omit(example_data) #perform feature selection s <- FSmethod(x, type = 'both', cor.cutoff = 0.7, resampling.method = "repeatedcv", iter = 5, repeats = 3, metric = "ROC", verbose = TRUE) corr_plot(s$cor.result$corProfile, method = 'square' , cex = 0.5)