I'm looking for a way to remove the default "tick marks" and "numeric labels" that appear on a chord diagram made with the R package Circlize. I'm trying to use the package to visualize employees moving from one department to another.
Below is an example of my data, which I store as a data frame (df)
From Department To Department
Aviation HRD
CMO Neighborhoods
CPD Parks & Rec
Conventions Municipal Court
Finance Law
GSD WSD
library(circlize)
chordDiagaram(df)
Any thoughts on how to remove the tick marks that appear around the colored bars as well as the labels "0,1,2"?
circos.axis('bottom')
in thecircos.trackPlotRegion
function – Josefinejoseito