Description Usage Arguments Value Examples
View source: R/heatmapDirection.R
Given an dataframe
with the directionality results obtained after apply
the directionality
function, a heatmap plot of the results is obtained.
1 2 3 | heatmapDirection(input, interactive = FALSE,
fromAtoBColor = "darkgreen", fromBtoAColor = "orange",
noDirectionColor = "grey", verbose = FALSE)
|
input |
A |
interactive |
Determines if the output heatmap is interactive or not.
By default the |
fromAtoBColor |
Determines the heatmap color for the direction A to B.
By default it is set to |
fromBtoAColor |
Determines the heatmap color for the direction B to A.
By default it is set to |
noDirectionColor |
Determines the heatmap color when there is no preferred direction.
By default it is set to |
verbose |
By default |
warnings |
By default |
A heatmap
1 2 3 4 5 6 | load(system.file("extdata", "directionalityExample.RData", package="comoRbidity"))
htmpDirection <- heatmapDirection( input = directionalityEx,
fromAtoBColor = "darkgreen",
fromBtoAColor = "orange",
noDirectionColor = "grey")
htmpDirection
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.