demo/foo.R

i = 1
while(1) {
	cat("\r")
	str = paste(paste(rep(" ", i), collapse = ""), "https://jokergoo.github.io/circlize", collapse = "")
	i = i+1
	if(nchar(str) > 80) {
		cat(paste(rep(" ", 80), collapse = ""))
		str = "https://jokergoo.github.io/circlize"
		i = 0
		cat("\r")
	}
	cat(str)
	Sys.sleep(0.2)
	flush.console()
}

Try the circlize package in your browser

Any scripts or data that you put into this service are public.

circlize documentation built on May 11, 2022, 1:06 a.m.