search for: yanming

Displaying 3 results from an estimated 3 matches for "yanming".

Did you mean: yanking
2012 Aug 24
2
how to keep the documents of private functions private
...have documents (Rd files) for the private functions, they will be compiled to the user manual even if the corresponding functions are not exported. Is there a solution around this? (I think I can keep two separate man folders and switch between them, but that seems a little bit tedious). Thanks. Yanming [[alternative HTML version deleted]]
2016 Apr 29
1
boxplot with formula involving two-factor levels
...one", "two")), each=3); r = 3; n = r * 6; x = rep(x, 3); y = rep(y, 3); z = rnorm(n); par(mfrow=c(2,1)); ## The following two seeming equivalent calls to boxplot give different results boxplot(z~x:y); f = x:y; boxplot(z~f); This is puzzling to me. Is this normal? Thanks! Best, Yanming [[alternative HTML version deleted]]
2012 Nov 07
2
Correct use of Depends, Imports and ::
Dear R developers, Taking advantage of the yesterday discussion about the use of Depends/Import/Suggests/Enhances, I would like to add a related question. Let's assume, in the DESCRIPTION file of my package foo0, I have: Depends: foo1 Imports: foo2 while in the NAMESPACE file of my package I have importFrom("foo2", f2) and within my package I use the following two external