Re: [R] formula version of sunflowerplot() fails when axis label specified

2012-06-27 Thread sina rueeger
Hi Gerrit I did the following: access the function via graphics:::sunflowerplot.formula, and then commented some lines to see, where the problem lies. I guess that it is the chunk with mf - eval(m, parent.frame()), but to be honest, I do not know why. My workaround is as follows:

Re: [R] How do I force confint() for glm() to be quiet?

2012-03-09 Thread sina rueeger
In stats:::confint.glm (actually it is MASS:::confint.glm) you see that the message() function is used to produce waiting for To avoid this message you can just use suppressMessages(confint(my.fit)) At least in R it works, hope it works with Sweave as well. Regards, Sina -- View this

Re: [R] reporting multiple objects out of a function

2011-10-05 Thread sina rueeger
Hi Andrew I am not sure if I understood your question entirely. You want to store some objects, but not in the global environment. Correct?! I would do it like this (although I am sure that there is a more elegant way to do this). ##