我有一个函数可以进行一些计算,并将图形保存为pdf,其结构如下:
> myfunction <- function(arg1,arg2,...){
> calc.data <- ... (some calculations)
> ggdf<- melt(calc.data)
> [... ] # modify ggdf to meet ggplot2 structure requirements
> myplot<-ggplot(ggdf,aes(x,y,colour=A))+geom_bar()+
>>theme([some theme modifications]) #default theme arguments
> pdf(...)
> print(myplot)
> dev.off()
> }
我的问题是,如果我想在加载/获取该函数后修改主题选项该怎么办。有没有办法为“myfunction”添加一个参数,让我修改我默认设置的“theme()”参数?