Description Usage Arguments Value Author(s) See Also Examples
View source: R/plotFunctions.R
Plot function using radarcharts to visualize global correlation profiles between samples and consensus classes
1 2 3 | plotCorrelations(xres, col.samp = "#1414BE", col.med = "red",
axistype = 2, seg = 4, pty = 32, plty = 1, plwd = 2,
cglty = 1, cglwd = 0.5, cglcol = "grey80", centerzero = T, ...)
|
xres |
The results returned by getConsensusClass, either the full dataset or a subset of rows. |
col.samp |
Color used to plot sample correlation profiles |
col.med |
Color used to plot the median correlation profile by consensus class |
axistype |
see radarchart documentation |
seg |
see radarchart documentation |
pty |
see radarchart documentation |
plty |
see radarchart documentation |
plwd |
see radarchart documentation |
cglty |
see radarchart documentation |
cglwd |
see radarchart documentation |
cglcol |
see radarchart documentation |
centerzero |
see radarchart documentation |
... |
further arguments passed to radarchart |
Plot a single radar chart for a single sample result. If multiple sample results are used, sample profiles are grouped by consensus class prediction on 6 radar charts, also showing the median profile by consensus class.
Gordon Robertson and Aurelie Kamoun
radarchart
1 2 3 4 5 6 7 8 | data(tcgadat)
xres <- getConsensusClass(tcga.dat)
#-- Example for a single sample plot, return a single radarchart
plotCorrelations(xres[1, ])
#-- Example for multiple samples, returns one radarchart per consensus class
plotCorrelations(xres)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.