I have a function:
MakeTxHistogram <-function(d,x,plot.labels) {
print(dim(d))
ggplot(data=d) +
geom_histogram(aes_string(x=x,y="..density..",fill="var1")) +
scale_x_log10() + facet_grid( var1~ var2 ) + labs(title=plot.labels[1],x=plot.labels[2]) +
theme
}
MakeTxHistogram
does exactly what I want when called directly from a script or the console. So I created a new function:
TestAndPlot<-function() {
MakeTxHistogram(d1,x,plot.labels)
MakeTxHistogram(d2,x,plot.labels)
RunAStatisticalTest()
}
When I call TestAndPlot()
, then both calls of MakeTxHistogram(...)
execute, but no plot is generated (the print()
function works, however). If instead I write TestAndPlot
as:
TestAndPlot<-function() {
RunAStatisticalTest()
MakeTxHistogram(d1,x1,plot.labels1)
MakeTxHistogram(d2,x2,plot.labels2)
}
Then RunAStatisticalTest()
works, the first call of MakeTxHistogram
executes but does not generate a plot, and the second call of MakeTxHistogram
executes and successfully generates the plot.
Have tried implementing solutions such as those suggested here, including setting the environment
to the local environment, and (obviously) using aes_string()
instead of aes()
. Can anyone suggest the source of the problem and a possible solution? I can just go back to calling these functions directly, but would rather be able to nest them inside of something (or understand why I can't/shouldn't do that).
Thanks!