2

How can I added a title to the circos plot generated using the circlize package, please? I didn't find any reference in the manual.

Grace
  • 75
  • 11

1 Answers1

2

No, title is not mentioned in the manual. On the other hand, if you study the excellent circlize vignette (it's actually a book of 171 pages!), you find that:

circlize is built on the base R graphic system, then, of course the base graphic functions can be used in combination with circlize functions. [...]

Normally, the base functions such as title(), text(), legend() can be used to add extra information on the plot

Thus, just add title() after your circlize plot call.

Community
  • 1
  • 1
Henrik
  • 65,555
  • 14
  • 143
  • 159