show-ccPlot-method: Draw the figures described by ccPlot

show,ccPlot-methodR Documentation

Draw the figures described by ccPlot

Description

Draw the figures described by ccPlot

Usage

## S4 method for signature 'ccPlot'
show(object)

Arguments

object

Object of ccPlot

Value

No return information

Examples

library(circlizePlus)
n = 1000
df = data.frame(sectors = sample(letters[1:8], n, replace = TRUE),
                x = rnorm(n), y = runif(n))
library(circlizePlus)
par1=ccPar("track.height" = 0.1)
cc=ccPlot(sectors = df$sectors, x = df$x) + par1
track1 = ccTrack(sectors = df$sectors, y = df$y,
                 panel.fun = function(x, y) {
                   circos.text(CELL_META$xcenter,
                               CELL_META$cell.ylim[2] + mm_y(5),
                               CELL_META$sector.index)
                   circos.axis(labels.cex = 0.6)
                 })
cc=cc+track1
show(cc)

circlizePlus documentation built on June 8, 2025, 10:42 a.m.