AndriSignorell/DescTools

PlotCirc - remove date?

jarbet opened this issue · 3 comments

jarbet commented

Would it be possible to add an option to remove the date from PlotCirc?

library(DescTools)

tab <- table(d.pizza$weekday, d.pizza$operator)
PlotCirc(tab, main="weekday ~ operator")

Screen Shot 2023-04-11 at 12 28 45 PM

@jarbet, does DescToolsOptions(stamp = NULL) solve your issue:

library(DescTools)

DescToolsOptions(stamp  = NULL)

tab <- table(d.pizza$weekday, d.pizza$operator)
PlotCirc(tab, main="weekday ~ operator")

Created on 2023-04-11 with reprex v2.0.2

Still, I think, there should be an explicit argument that controls the presence/absence of the stamp.

jarbet commented

@jarbet, does DescToolsOptions(stamp = NULL) solve your issue:

Yes, this works for me. Thanks!