AndriSignorell / DescTools

Tools for Descriptive Statistics and Exploratory Data Analysis
http://andrisignorell.github.io/DescTools/
82 stars 18 forks source link

PlotCirc - remove date? #111

Closed jarbet closed 1 year ago

jarbet commented 1 year ago

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

GegznaV commented 1 year ago

@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

GegznaV commented 1 year ago

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

jarbet commented 1 year ago

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

Yes, this works for me. Thanks!