Re: [Rd] [R] Why does R replace all row values with NAs

2015-03-03 Thread Stephanie M. Gogarten
On 3/3/15 1:26 PM, Hervé Pagès wrote: On 03/03/2015 02:28 AM, Martin Maechler wrote: Diverted from R-help : as it gets into musing about new R language "primitives" William Dunlap on Fri, 27 Feb 2015 08:04:36 -0800 writes: > You could define functions like > is.true

Re: [Rd] Correct use of Depends, Imports and ::

2012-11-07 Thread Stephanie M. Gogarten
On 11/7/12 12:00 PM, Prof Brian Ripley wrote: On 07/11/2012 17:52, mauricio zambrano wrote: On 11/07/12, Simon Urbanek wrote: On Nov 7, 2012, at 9:25 AM, Simon Urbanek wrote: On Nov 7, 2012, at 4:04 AM, Mauricio Zambrano-Bigiarini wrote: Dear R developers, Taking advantage of the ye

Re: [Rd] merge bug fix in R 2.15.0

2012-03-19 Thread Stephanie M. Gogarten
I would like to add a vote for keeping blank suffixes in merge(), as I routinely use this functionality. An example use case: # using R 2.14.1 # d1 is some data that I've been working on for a while d1 <- data.frame(a=letters[1:10], b=1:10) # d2 is some new data from a collaborator. I want to

[Rd] importing S3 methods with importFrom

2012-01-11 Thread Stephanie M. Gogarten
In my own package, I want to use the default S3 method of the generic function lrtest() from the lmtest package. Since I need only one function from lmtest, I tried to use importFrom in my NAMESPACE: importFrom(lmtest, lrtest) However, this fails R CMD check in the examples: Error in UseMetho

[Rd] "could not find function" after import

2011-09-19 Thread Stephanie M. Gogarten
I am trying to build a package (GWASTools, submitted to Bioconductor) that uses the "sandwich" package. I have references to "sandwich" in DESCRIPTION: Imports: methods, DBI, RSQLite, sandwich, survival, DNAcopy and NAMESPACE: import(sandwich) In the code itself is a call to vcovHC: Vhat <- v