Skip to contents

Generate a cell container that belongs to a particular sector

Usage

ccCell(sector.index = NULL)

Arguments

sector.index

character. It is the index that corresponds to the sector.

Value

Object ccCell

Examples

library(circlizePlus)
sectors <- c("a", "a", "a", "a", "b", "b", "b", "b", "c", "c", "c", "c", "d", "d", "d", "d")
x1 <- c(1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4)
y1 <- c(1, 2, 3, 4, 4, 3, 2, 1, 1, 1, 1, 1, 1, 2, 1, 2)
cc <- ccPlot(initMode = "initialize", sectors = sectors, x = x1)
track1 <- ccTrack(sectors = sectors, x = x1, y = y1)
cell_single <- ccCell(sector.index = letters[3]) + ccPoints(y = \(x, y){
  y
})
#> Error in ccPoints(y = function(x, y) {    y}): argument "x" is missing, with no default
track1 <- track1 + cell_single
#> Error: object 'cell_single' not found
cc + track1